PluginSecurityInfo.cs 483 B

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