DocSpace-buildtools/web/ASC.Web.Api/Models/WhiteLabelModel.cs
2020-08-27 17:01:37 +03:00

16 lines
379 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; }
}
}