PluginSecurityInfo.cs 620 B

123456789101112131415161718192021
  1. namespace MediaBrowser.Model.Entities
  2. {
  3. /// <summary>
  4. /// Class PluginSecurityInfo
  5. /// </summary>
  6. public class PluginSecurityInfo
  7. {
  8. /// <summary>
  9. /// Gets or sets the supporter key.
  10. /// </summary>
  11. /// <value>The supporter key.</value>
  12. public string SupporterKey { get; set; }
  13. /// <summary>
  14. /// Gets or sets a value indicating whether this instance is MB supporter.
  15. /// </summary>
  16. /// <value><c>true</c> if this instance is MB supporter; otherwise, <c>false</c>.</value>
  17. public bool IsMBSupporter { get; set; }
  18. }
  19. }