ControlRequest.cs 444 B

123456789101112131415161718192021
  1. using System.Collections.Generic;
  2. using System.IO;
  3. namespace Emby.Dlna
  4. {
  5. public class ControlRequest
  6. {
  7. public IDictionary<string, string> Headers { get; set; }
  8. public Stream InputXml { get; set; }
  9. public string TargetServerUuId { get; set; }
  10. public string RequestedUrl { get; set; }
  11. public ControlRequest()
  12. {
  13. Headers = new Dictionary<string, string>();
  14. }
  15. }
  16. }