2020-06-18 13:11:46 +00:00
|
|
|
|
namespace Jellyfin.Api.Models.PluginDtos
|
2020-06-09 15:57:01 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Plugin security info.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class PluginSecurityInfo
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the supporter key.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string? SupporterKey { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets a value indicating whether is mb supporter.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public bool IsMbSupporter { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|