ControlRequest.cs 449 B

1234567891011121314151617181920
  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. }