DocSpace-buildtools/web/ASC.Web.Api/ApiModels/RequestsDto/WhiteLabelDto.cs

14 lines
312 B
C#
Raw Normal View History

2022-03-01 10:58:02 +00:00
namespace ASC.Web.Api.ApiModel.RequestsDto;
public class WhiteLabelDto
2022-03-01 08:59:06 +00:00
{
2022-03-01 10:58:02 +00:00
public string LogoText { get; set; }
public IEnumerable<ItemKeyValuePair<string, string>> Logo { get; set; }
}
2022-03-01 08:59:06 +00:00
2022-03-01 11:35:29 +00:00
public class WhiteLabelQueryDto
2022-03-01 10:58:02 +00:00
{
public bool IsDefault { get; set; }
public bool IsRetina { get; set; }
2022-03-01 08:59:06 +00:00
}