You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
465 B
19 lines
465 B
namespace Jellyfin.Api.Models.PluginDtos
|
|
{
|
|
/// <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; }
|
|
}
|
|
}
|