ControlRequest.cs 759 B

12345678910111213141516171819202122232425262728293031323334
  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 string RequestedUrl { get; set; }
  10. public ControlRequest()
  11. {
  12. Headers = new Dictionary<string, string>();
  13. }
  14. }
  15. public class ControlResponse
  16. {
  17. public IDictionary<string, string> Headers { get; set; }
  18. public string Xml { get; set; }
  19. public bool IsSuccessful { get; set; }
  20. public ControlResponse()
  21. {
  22. Headers = new Dictionary<string, string>();
  23. }
  24. }
  25. }