2014-05-08 16:09:53 -04:00
|
|
|
|
using MediaBrowser.Model.Session;
|
2013-10-08 20:14:42 -04:00
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Model.ApiClient
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Class SystemCommandEventArgs
|
|
|
|
|
|
/// </summary>
|
2014-10-08 19:31:44 -04:00
|
|
|
|
public class GeneralCommandEventArgs
|
2013-10-08 20:14:42 -04:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Gets or sets the command.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <value>The command.</value>
|
2014-03-31 17:04:22 -04:00
|
|
|
|
public GeneralCommand Command { get; set; }
|
2014-03-31 22:09:07 -04: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 20:14:42 -04:00
|
|
|
|
}
|
|
|
|
|
|
}
|