GeneralCommandEventArgs.cs 635 B

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