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