#pragma warning disable CS1591 namespace MediaBrowser.Model.Branding { public class BrandingOptions { /// /// Gets or sets the login disclaimer. /// /// The login disclaimer. public string? LoginDisclaimer { get; set; } /// /// Gets or sets the custom CSS. /// /// The custom CSS. public string? CustomCss { get; set; } } }