aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Session/GeneralCommand.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/Session/GeneralCommand.cs')
-rw-r--r--MediaBrowser.Model/Session/GeneralCommand.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.Model/Session/GeneralCommand.cs b/MediaBrowser.Model/Session/GeneralCommand.cs
index 980e1f88b..77bb6bcf7 100644
--- a/MediaBrowser.Model/Session/GeneralCommand.cs
+++ b/MediaBrowser.Model/Session/GeneralCommand.cs
@@ -1,3 +1,4 @@
+#nullable disable
#pragma warning disable CS1591
using System;
@@ -7,7 +8,7 @@ namespace MediaBrowser.Model.Session
{
public class GeneralCommand
{
- public string Name { get; set; }
+ public GeneralCommandType Name { get; set; }
public Guid ControllingUserId { get; set; }