namespace MediaBrowser.Model.Configuration; /// /// Experimental server configuration options. /// public class ExperimentalConfiguration { /// /// Gets or sets a value indicating whether plugin assets should require administrator access. /// public bool ElevatePluginRoutes { get; set; } = false; /// /// Gets or sets a value indicating whether all configuration routes should require administrator access. /// public bool ElevateConfigurationRoutes { get; set; } = false; /// /// Gets or sets a value indicating whether audio streams should require authentication. /// public bool AuthenticateAudioRoutes { get; set; } = false; /// /// Gets or sets a value indicating whether video streams should require authentication. /// public bool AuthenticateVideoRoutes { get; set; } = false; }