You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
440 B
16 lines
440 B
using System.Linq;
|
|
using Services.PetaPoco;
|
|
|
|
namespace NzbDrone.Services.Service.Repository.Reporting
|
|
{
|
|
[TableName("Exceptions")]
|
|
[PrimaryKey("Hash", autoIncrement = false)]
|
|
public class ExceptionDetail
|
|
{
|
|
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; }
|
|
}
|
|
} |