1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-01-03 22:04:43 +00:00
Radarr/NzbDrone.Common/Contract/ParseErrorReport.cs

12 lines
214 B
C#
Raw Normal View History

using System.Linq;
using Newtonsoft.Json;
namespace NzbDrone.Common.Contract
{
public class ParseErrorReport : ReportBase
{
[JsonProperty("t")]
public string Title { get; set; }
}
}