diff options
| author | David <daullmer@gmail.com> | 2020-06-17 17:07:37 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-17 17:07:37 +0200 |
| commit | efe998ecf4c2bd8315b6620d65de2db0f0d9d01a (patch) | |
| tree | abdeac5b7ee4876db2faa91a284360550b3112bd /Jellyfin.Api/Models/PluginDtos/PluginSecurityInfo.cs | |
| parent | cf9223b8cb2f1ebccf20cb1dcd99d19b78cf3e61 (diff) | |
| parent | 81030a0a5a5965bd5c1c3e02ec4622d168522fca (diff) | |
Merge pull request #3280 from crobibero/api-plugin
Move PluginService to Jellyfin.Api
Diffstat (limited to 'Jellyfin.Api/Models/PluginDtos/PluginSecurityInfo.cs')
| -rw-r--r-- | Jellyfin.Api/Models/PluginDtos/PluginSecurityInfo.cs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Jellyfin.Api/Models/PluginDtos/PluginSecurityInfo.cs b/Jellyfin.Api/Models/PluginDtos/PluginSecurityInfo.cs new file mode 100644 index 000000000..793002a6c --- /dev/null +++ b/Jellyfin.Api/Models/PluginDtos/PluginSecurityInfo.cs @@ -0,0 +1,20 @@ +#nullable enable + +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; } + } +} |
