BrandingOptionsDto.cs 736 B

12345678910111213141516171819202122232425
  1. namespace MediaBrowser.Model.Branding;
  2. /// <summary>
  3. /// The branding options DTO for API use.
  4. /// This DTO excludes SplashscreenLocation to prevent it from being updated via API.
  5. /// </summary>
  6. public class BrandingOptionsDto
  7. {
  8. /// <summary>
  9. /// Gets or sets the login disclaimer.
  10. /// </summary>
  11. /// <value>The login disclaimer.</value>
  12. public string? LoginDisclaimer { get; set; }
  13. /// <summary>
  14. /// Gets or sets the custom CSS.
  15. /// </summary>
  16. /// <value>The custom CSS.</value>
  17. public string? CustomCss { get; set; }
  18. /// <summary>
  19. /// Gets or sets a value indicating whether to enable the splashscreen.
  20. /// </summary>
  21. public bool SplashscreenEnabled { get; set; } = false;
  22. }