aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Dlna/EventSubscriptionResponse.cs
blob: 8b551c2a7c0036da6396f3e0618d6187fc8b862d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System.Collections.Generic;

namespace MediaBrowser.Controller.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>();
        }
    }
}