mirror of
https://github.com/Radarr/Radarr
synced 2025-02-05 22:32:03 +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; }
|
|
}
|
|
}
|