GeneralCommand.cs 445 B

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