2012-02-16 06:16:57 +00:00
|
|
|
|
using System.Collections.Generic;
|
2012-02-05 06:34:36 +00:00
|
|
|
|
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>
|
|
|
|
|
{
|
2012-03-01 02:36:39 +00:00
|
|
|
|
{"Title", Title.NullSafe()},
|
2012-02-16 06:16:57 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return dic;
|
|
|
|
|
}
|
2012-02-05 06:34:36 +00:00
|
|
|
|
}
|
|
|
|
|
}
|