2
0

GeneralCommand.cs 468 B

12345678910111213141516171819202122
  1. #nullable disable
  2. #pragma warning disable CS1591
  3. using System;
  4. using System.Collections.Generic;
  5. namespace MediaBrowser.Model.Session
  6. {
  7. public class GeneralCommand
  8. {
  9. public GeneralCommandType Name { get; set; }
  10. public Guid ControllingUserId { get; set; }
  11. public Dictionary<string, string> Arguments { get; set; }
  12. public GeneralCommand()
  13. {
  14. Arguments = new Dictionary<string, string>();
  15. }
  16. }
  17. }