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 GetString() { var dic = new Dictionary { {"Message", LogMessage.NullSafe()} }; return dic; } } }