using ProtoBuf;
namespace MediaBrowser.Model.Entities
{
    /// 
    /// Class PluginSecurityInfo
    /// 
    [ProtoContract]
    public class PluginSecurityInfo
    {
        /// 
        /// Gets or sets the supporter key.
        /// 
        /// The supporter key.
        [ProtoMember(1)]
        public string SupporterKey { get; set; }
        /// 
        /// Gets or sets the legacy supporter key.
        /// 
        /// The legacy supporter key
        [ProtoMember(2)]
        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.
        [ProtoMember(3)]
        public bool IsMBSupporter { get; set; }
    }
}