1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-01-19 05:10:02 +00:00
Lidarr/NzbDrone.Services/NzbDrone.Services.Service/Repository/Reporting/ParseErrorRow.cs

14 lines
297 B
C#
Raw Normal View History

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; }
}
}