EventSubscriptionResponse.cs 438 B

12345678910111213141516171819202122
  1. #nullable disable
  2. #pragma warning disable CS1591
  3. using System.Collections.Generic;
  4. namespace Emby.Dlna
  5. {
  6. public class EventSubscriptionResponse
  7. {
  8. public EventSubscriptionResponse()
  9. {
  10. Headers = new Dictionary<string, string>();
  11. }
  12. public string Content { get; set; }
  13. public string ContentType { get; set; }
  14. public Dictionary<string, string> Headers { get; }
  15. }
  16. }