You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
627 B
26 lines
627 B
13 years ago
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using Newtonsoft.Json;
|
||
|
|
||
|
namespace NzbDrone.Common.Contract
|
||
|
{
|
||
|
public class ExistingExceptionReport : ReportBase
|
||
|
{
|
||
|
|
||
|
[JsonProperty("h")]
|
||
|
public string Hash { get; set; }
|
||
|
|
||
|
[JsonProperty("lm")]
|
||
|
public string LogMessage { get; set; }
|
||
|
|
||
|
protected override Dictionary<string, string> GetString()
|
||
|
{
|
||
|
var dic = new Dictionary<string, string>
|
||
|
{
|
||
|
{"Message", LogMessage.NullSafe()}
|
||
|
};
|
||
|
|
||
|
return dic;
|
||
|
}
|
||
|
}
|
||
|
}
|