aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/ApiClient/ServerEventArgs.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/ApiClient/ServerEventArgs.cs')
-rw-r--r--MediaBrowser.Model/ApiClient/ServerEventArgs.cs10
1 files changed, 8 insertions, 2 deletions
diff --git a/MediaBrowser.Model/ApiClient/ServerEventArgs.cs b/MediaBrowser.Model/ApiClient/ServerEventArgs.cs
index d3212caf4..6637edd74 100644
--- a/MediaBrowser.Model/ApiClient/ServerEventArgs.cs
+++ b/MediaBrowser.Model/ApiClient/ServerEventArgs.cs
@@ -152,13 +152,19 @@ namespace MediaBrowser.Model.ApiClient
/// <summary>
/// Class SystemCommandEventArgs
/// </summary>
- public class SystemCommandEventArgs : EventArgs
+ public class GeneralCommandEventArgs : EventArgs
{
/// <summary>
/// Gets or sets the command.
/// </summary>
/// <value>The command.</value>
- public SystemCommand Command { get; set; }
+ public GeneralCommand Command { get; set; }
+
+ /// <summary>
+ /// Gets or sets the type of the known command.
+ /// </summary>
+ /// <value>The type of the known command.</value>
+ public GeneralCommandType? KnownCommandType { get; set; }
}
/// <summary>