mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-24 22:35:39 -04:00
14 lines
297 B
C#
14 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; }
|
|
}
|
|
}
|