PluginSecurityInfo.cs 932 B

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