jellyfin/MediaBrowser.Controller/Dlna/EventSubscriptionResponse.cs

18 lines
413 B
C#
Raw Normal View History

2014-04-21 18:02:30 +02:00
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>();
}
}
}