ControlRequest.cs 709 B

1234567891011121314151617181920212223242526272829303132
  1. using System.Collections.Generic;
  2. namespace MediaBrowser.Controller.Dlna
  3. {
  4. public class ControlRequest
  5. {
  6. public IDictionary<string, string> Headers { get; set; }
  7. public string InputXml { get; set; }
  8. public string TargetServerUuId { get; set; }
  9. public ControlRequest()
  10. {
  11. Headers = new Dictionary<string, string>();
  12. }
  13. }
  14. public class ControlResponse
  15. {
  16. public IDictionary<string, string> Headers { get; set; }
  17. public string Xml { get; set; }
  18. public bool IsSuccessful { get; set; }
  19. public ControlResponse()
  20. {
  21. Headers = new Dictionary<string, string>();
  22. }
  23. }
  24. }