diff options
Diffstat (limited to 'Emby.Dlna/EventSubscriptionResponse.cs')
| -rw-r--r-- | Emby.Dlna/EventSubscriptionResponse.cs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Emby.Dlna/EventSubscriptionResponse.cs b/Emby.Dlna/EventSubscriptionResponse.cs new file mode 100644 index 000000000..1c405e601 --- /dev/null +++ b/Emby.Dlna/EventSubscriptionResponse.cs @@ -0,0 +1,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>(); + } + } +} |
