ControlResponse.cs 400 B

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