using MediaBrowser.Model.Session; using System; namespace MediaBrowser.Model.ApiClient { /// /// Class SystemCommandEventArgs /// public class GeneralCommandEventArgs : EventArgs { /// /// Gets or sets the command. /// /// The command. public GeneralCommand Command { get; set; } /// /// Gets or sets the type of the known command. /// /// The type of the known command. public GeneralCommandType? KnownCommandType { get; set; } } }