GeneralCommandEventArgs.cs 609 B

12345678910111213141516171819202122
  1. using MediaBrowser.Model.Session;
  2. namespace MediaBrowser.Model.ApiClient
  3. {
  4. /// <summary>
  5. /// Class SystemCommandEventArgs
  6. /// </summary>
  7. public class GeneralCommandEventArgs
  8. {
  9. /// <summary>
  10. /// Gets or sets the command.
  11. /// </summary>
  12. /// <value>The command.</value>
  13. public GeneralCommand Command { get; set; }
  14. /// <summary>
  15. /// Gets or sets the type of the known command.
  16. /// </summary>
  17. /// <value>The type of the known command.</value>
  18. public GeneralCommandType? KnownCommandType { get; set; }
  19. }
  20. }