EventSubscriptionResponse.cs 523 B

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