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

18 lines
468 B
C#
Raw Normal View History

2019-08-12 10:53:12 +00:00
using System.Collections.Generic;
2020-08-27 14:01:37 +00:00
2019-08-12 10:53:12 +00:00
using ASC.Api.Collections;
2020-08-27 14:01:37 +00:00
2019-08-12 10:53:12 +00:00
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; }
2020-09-17 12:04:28 +00:00
public bool IsDefault { get; set; }
public bool IsRetina { get; set; }
2019-08-12 10:53:12 +00:00
}
}