ControlResponse.cs 368 B

123456789101112131415161718
  1. using System.Collections.Generic;
  2. namespace Emby.Dlna
  3. {
  4. public class ControlResponse
  5. {
  6. public IDictionary<string, string> Headers { get; set; }
  7. public string Xml { get; set; }
  8. public bool IsSuccessful { get; set; }
  9. public ControlResponse()
  10. {
  11. Headers = new Dictionary<string, string>();
  12. }
  13. }
  14. }