mirror of
https://github.com/Radarr/Radarr
synced 2025-01-05 23:21:25 +00:00
13 lines
297 B
C#
13 lines
297 B
C#
using System.Linq;
|
|
using Services.PetaPoco;
|
|
|
|
|
|
namespace NzbDrone.Services.Service.Repository.Reporting
|
|
{
|
|
[TableName("ParseErrorReports")]
|
|
[PrimaryKey("Title", autoIncrement = false)]
|
|
public class ParseErrorRow : ReportRowBase
|
|
{
|
|
public string Title { get; set; }
|
|
}
|
|
}
|