1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-03-05 15:15:59 +02:00

16 lines
440 B
C#
Raw Normal View History

using System.Linq;
using Services.PetaPoco;
namespace NzbDrone.Services.Service.Repository.Reporting
{
[TableName("Exceptions")]
2012-02-29 21:10:56 -08:00
[PrimaryKey("Hash", autoIncrement = false)]
public class ExceptionDetail
{
2012-02-29 21:10:56 -08:00
public string Hash { get; set; }
public string Logger { get; set; }
public string Type { get; set; }
public string String { get; set; }
public string Version { get; set; }
}
}