namespace Jellyfin.Api.Models.PluginDtos { /// /// Plugin security info. /// public class PluginSecurityInfo { /// /// Gets or sets the supporter key. /// public string? SupporterKey { get; set; } /// /// Gets or sets a value indicating whether is mb supporter. /// public bool IsMbSupporter { get; set; } } }