jellyfin/MediaBrowser.Model/ApiClient/GeneralCommandEventArgs.cs

23 lines
609 B
C#
Raw Normal View History

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