jellyfin/Emby.Dlna/EventSubscriptionResponse.cs

18 lines
391 B
C#
Raw Normal View History

using System.Collections.Generic;
2014-04-21 18:02:30 +02:00
2018-09-12 19:26:21 +02:00
namespace Emby.Dlna
2014-04-21 18:02:30 +02:00
{
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>();
}
}
}