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

11 lines
214 B
C#

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