1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/NzbDrone.Common/Contract/ParseErrorReport.cs

23 lines
533 B
C#
Raw Normal View History

2012-02-16 09:16:57 +03:00
using System.Collections.Generic;
using System.Linq;
using Newtonsoft.Json;
namespace NzbDrone.Common.Contract
{
public class ParseErrorReport : ReportBase
{
[JsonProperty("t")]
public string Title { get; set; }
2012-02-16 09:16:57 +03:00
protected override Dictionary<string, string> GetString()
{
var dic = new Dictionary<string, string>
{
{"Title", Title.NullSafe()},
2012-02-16 09:16:57 +03:00
};
return dic;
}
}
}