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