aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Branding/BrandingOptions.cs
blob: f83558df5918b942b04f14294affcac229e4fc21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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; }
    }
}