namespace MediaBrowser.Model.Branding; /// /// The branding options DTO for API use. /// This DTO excludes SplashscreenLocation to prevent it from being updated via API. /// public class BrandingOptionsDto { /// /// 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; } /// /// Gets or sets a value indicating whether to enable the splashscreen. /// public bool SplashscreenEnabled { get; set; } = false; }