PluginSecurityInfo.cs 821 B

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