mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-26 01:37:07 +00:00
11 lines
214 B
C#
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; }
|
|
}
|
|
}
|