GeneralCommand.cs 438 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 string Name { get; set; }
  9. public Guid ControllingUserId { get; set; }
  10. public Dictionary<string, string> Arguments { get; set; }
  11. public GeneralCommand()
  12. {
  13. Arguments = new Dictionary<string, string>();
  14. }
  15. }
  16. }