2
0

BrandingOptions.cs 780 B

1234567891011121314151617181920212223242526272829
  1. namespace MediaBrowser.Model.Branding;
  2. /// <summary>
  3. /// The branding options.
  4. /// </summary>
  5. public class BrandingOptions
  6. {
  7. /// <summary>
  8. /// Gets or sets the login disclaimer.
  9. /// </summary>
  10. /// <value>The login disclaimer.</value>
  11. public string? LoginDisclaimer { get; set; }
  12. /// <summary>
  13. /// Gets or sets the custom CSS.
  14. /// </summary>
  15. /// <value>The custom CSS.</value>
  16. public string? CustomCss { get; set; }
  17. /// <summary>
  18. /// Gets or sets a value indicating whether to enable the splashscreen.
  19. /// </summary>
  20. public bool SplashscreenEnabled { get; set; } = false;
  21. /// <summary>
  22. /// Gets or sets the splashscreen location on disk.
  23. /// </summary>
  24. public string? SplashscreenLocation { get; set; }
  25. }