using System.Collections.Generic; namespace ASC.Web.Api.Models { public class CapabilitiesData { public bool LdapEnabled { get; set; } public List Providers { get; set; } public string SsoLabel { get; set; } /// /// if empty sso is disabled /// public string SsoUrl { get; set; } public static CapabilitiesData GetSample() { return new CapabilitiesData { LdapEnabled = false, // Providers = AccountLinkControl.AuthProviders, SsoLabel = string.Empty, SsoUrl = string.Empty, }; } } }