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