GeneralCommand.cs 397 B

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