2
0

GeneralCommand.cs 406 B

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