jellyfin/Emby.Dlna/EventSubscriptionResponse.cs

23 lines
438 B
C#
Raw Normal View History

#nullable disable
#pragma warning disable CS1591
using System.Collections.Generic;
2014-04-21 12:02:30 -04:00
2018-09-12 13:26:21 -04:00
namespace Emby.Dlna
2014-04-21 12:02:30 -04:00
{
public class EventSubscriptionResponse
{
public EventSubscriptionResponse()
{
Headers = new Dictionary<string, string>();
}
public string Content { get; set; }
public string ContentType { get; set; }
2020-08-20 15:04:57 -04:00
public Dictionary<string, string> Headers { get; }
2014-04-21 12:02:30 -04:00
}
}