2014-05-08 13:09:53 -07:00
|
|
|
|
using MediaBrowser.Model.Session;
|
2013-10-08 17:14:42 -07:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.ApiClient
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class SystemCommandEventArgs
|
|
|
|
|
/// </summary>
|
2014-03-31 14:04:22 -07:00
|
|
|
|
public class GeneralCommandEventArgs : EventArgs
|
2013-10-08 17:14:42 -07:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the command.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The command.</value>
|
2014-03-31 14:04:22 -07:00
|
|
|
|
public GeneralCommand Command { get; set; }
|
2014-03-31 19:09:07 -07:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the type of the known command.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The type of the known command.</value>
|
|
|
|
|
public GeneralCommandType? KnownCommandType { get; set; }
|
2013-10-08 17:14:42 -07:00
|
|
|
|
}
|
|
|
|
|
}
|