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

19 lines
420 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
namespace ASC.Web.Api.Models
{
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
}
}