Sonarr/NzbDrone.Common/Contract/ParseErrorReport.cs

22 lines
514 B
C#
Raw Normal View History

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