07cc4be6a7
* Add analyzers to MediaBrowser.XbmcMetadata * Enable TreatWarningsAsErrors for MediaBrowser.XbmcMetadata * Add analyzers to MediaBrowser.WebDashboard * Enable TreatWarningsAsErrors for MediaBrowser.WebDashboard * Disable SA1600 in favor of CS1591
21 lines
424 B
C#
21 lines
424 B
C#
#pragma warning disable CS1591
|
|
|
|
using System.Collections.Generic;
|
|
|
|
namespace Emby.Dlna
|
|
{
|
|
public class EventSubscriptionResponse
|
|
{
|
|
public EventSubscriptionResponse()
|
|
{
|
|
Headers = new Dictionary<string, string>();
|
|
}
|
|
|
|
public string Content { get; set; }
|
|
|
|
public string ContentType { get; set; }
|
|
|
|
public Dictionary<string, string> Headers { get; set; }
|
|
}
|
|
}
|