2019-01-13 19:54:44 +00:00
|
|
|
using System.Collections.Generic;
|
2014-04-21 16:02:30 +00:00
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
namespace Emby.Dlna
|
2014-04-21 16:02:30 +00: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>();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|