1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-02-15 10:55:57 +00:00
Sonarr/NzbDrone.Common/Contract/ExceptionReport.cs

18 lines
431 B
C#

using System.Linq;
using Newtonsoft.Json;
namespace NzbDrone.Common.Contract
{
public class ExceptionReport : ReportBase
{
[JsonProperty("t")]
public string Type { get; set; }
[JsonProperty("l")]
public string Logger { get; set; }
[JsonProperty("lm")]
public string LogMessage { get; set; }
[JsonProperty("s")]
public string String { get; set; }
}
}