using MediaBrowser.Model.Session;
namespace MediaBrowser.Model.ApiClient
{
    /// 
    /// Class SystemCommandEventArgs
    /// 
    public class GeneralCommandEventArgs
    {
        /// 
        /// 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; }
    }
}