aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/PluginSecurityInfo.cs
blob: 5cab55013e236325fc6868ebd6d05e79b81dae6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
namespace MediaBrowser.Model.Entities
{
    /// <summary>
    /// Class PluginSecurityInfo
    /// </summary>
    public class PluginSecurityInfo
    {
        /// <summary>
        /// Gets or sets the supporter key.
        /// </summary>
        /// <value>The supporter key.</value>
        public string SupporterKey { get; set; }

        /// <summary>
        /// Gets or sets a value indicating whether this instance is MB supporter.
        /// </summary>
        /// <value><c>true</c> if this instance is MB supporter; otherwise, <c>false</c>.</value>
        public bool IsMBSupporter { get; set; }
    }
}