jellyfin/Emby.Dlna/EventSubscriptionResponse.cs

23 lines
523 B
C#
Raw Normal View History

#pragma warning disable CS1591
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
{
2021-07-26 21:02:32 +00:00
public EventSubscriptionResponse(string content, string contentType)
2014-04-21 16:02:30 +00:00
{
2021-07-26 21:02:32 +00:00
Content = content;
ContentType = contentType;
2014-04-21 16:02:30 +00:00
Headers = new Dictionary<string, string>();
}
public string Content { get; set; }
public string ContentType { get; set; }
2020-08-20 19:04:57 +00:00
public Dictionary<string, string> Headers { get; }
2014-04-21 16:02:30 +00:00
}
}