PluginSecurityInfo.cs 465 B

123456789101112131415161718
  1. namespace Jellyfin.Api.Models.PluginDtos
  2. {
  3. /// <summary>
  4. /// Plugin security info.
  5. /// </summary>
  6. public class PluginSecurityInfo
  7. {
  8. /// <summary>
  9. /// Gets or sets the supporter key.
  10. /// </summary>
  11. public string? SupporterKey { get; set; }
  12. /// <summary>
  13. /// Gets or sets a value indicating whether is mb supporter.
  14. /// </summary>
  15. public bool IsMbSupporter { get; set; }
  16. }
  17. }