EventSubscriptionResponse.cs 391 B

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