aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Branding/BrandingOptions.cs
blob: 8ab268a64df9f5c5966985c9730f5b25be1d4a07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#pragma warning disable CS1591

namespace MediaBrowser.Model.Branding
{
    public class BrandingOptions
    {
        /// <summary>
        /// Gets or sets the login disclaimer.
        /// </summary>
        /// <value>The login disclaimer.</value>
        public string LoginDisclaimer { get; set; }

        /// <summary>
        /// Gets or sets the custom CSS.
        /// </summary>
        /// <value>The custom CSS.</value>
        public string CustomCss { get; set; }
    }
}