aboutsummaryrefslogtreecommitdiff
path: root/Emby.Dlna/EventSubscriptionResponse.cs
blob: 6dc1aacf4f61de9e0dfc82054f078fd329ed9e24 (plain)
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>();
        }
    }
}