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

15 lines
353 B
C#
Raw Normal View History

2022-01-31 15:13:08 +00:00
namespace ASC.Web.Api.Models
2019-08-12 10:53:12 +00:00
{
public class WhiteLabelModel
{
public string LogoText { get; set; }
public IEnumerable<ItemKeyValuePair<string, string>> Logo { get; set; }
}
2020-11-03 15:16:23 +00:00
public class WhiteLabelQuery
{
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
}
}