DocSpace-buildtools/web/ASC.Web.Api/Models/WhiteLabelModel.cs

14 lines
375 B
C#

using System.Collections.Generic;
using ASC.Api.Collections;
using Microsoft.AspNetCore.Http;
namespace ASC.Web.Api.Models
{
public class WhiteLabelModel
{
public IEnumerable<IFormFile> Attachments { get; set; }
public string LogoText { get; set; }
public IEnumerable<ItemKeyValuePair<int, string>> Logo { get; set; }
}
}