ControlResponse.cs 431 B

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