aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Models/PluginDtos/PluginSecurityInfo.cs
diff options
context:
space:
mode:
authorDavid <daullmer@gmail.com>2020-06-17 17:07:37 +0200
committerGitHub <noreply@github.com>2020-06-17 17:07:37 +0200
commitefe998ecf4c2bd8315b6620d65de2db0f0d9d01a (patch)
treeabdeac5b7ee4876db2faa91a284360550b3112bd /Jellyfin.Api/Models/PluginDtos/PluginSecurityInfo.cs
parentcf9223b8cb2f1ebccf20cb1dcd99d19b78cf3e61 (diff)
parent81030a0a5a5965bd5c1c3e02ec4622d168522fca (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.cs20
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; }
+ }
+}