Radarr/src/NzbDrone.Common/Http/HttpAccept.cs

24 lines
629 B
C#
Raw Normal View History

using System;
namespace NzbDrone.Common.Http
{
public sealed class HttpAccept
{
public static readonly HttpAccept Rss = new HttpAccept("application/rss+xml, text/rss+xml, application/xml, text/xml");
public static readonly HttpAccept Json = new HttpAccept("application/json");
public static readonly HttpAccept Html = new HttpAccept("text/html");
public string Value { get; private set; }
public HttpAccept(string accept)
{
Value = accept;
}
public override string ToString()
{
return Value;
}
}
}