DocSpace-buildtools/web/ASC.Web.Api/Models/WhiteLabelModel.cs
2020-11-06 12:03:49 +03:00

19 lines
420 B
C#

using System.Collections.Generic;
using ASC.Api.Collections;
namespace ASC.Web.Api.Models
{
public class WhiteLabelModel
{
public string LogoText { get; set; }
public IEnumerable<ItemKeyValuePair<string, string>> Logo { get; set; }
}
public class WhiteLabelQuery
{
public bool IsDefault { get; set; }
public bool IsRetina { get; set; }
}
}