aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/PluginDtos/PluginSecurityInfo.cs
blob: a90398425a8c4436796909d809bdb5b6d2d1f046 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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; }
    }
}