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