namespace MediaBrowser.Model.Entities
{
    /// 
    /// Class PluginSecurityInfo
    /// 
    public class PluginSecurityInfo
    {
        /// 
        /// Gets or sets the supporter key.
        /// 
        /// The supporter key.
        public string SupporterKey { get; set; }
        /// 
        /// Gets or sets the legacy supporter key.
        /// 
        /// The legacy supporter key
        public string LegacyKey { get; set; }
        /// 
        /// Gets or sets a value indicating whether this instance is MB supporter.
        /// 
        /// true if this instance is MB supporter; otherwise, false.
        public bool IsMBSupporter { get; set; }
    }
}