mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-30 23:45:46 +02: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; }
|
|
}
|
|
}
|