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.
17 lines
442 B
17 lines
442 B
using System;
|
|
using System.Linq;
|
|
using Services.PetaPoco;
|
|
|
|
namespace NzbDrone.Services.Service.Repository.Reporting
|
|
{
|
|
[TableName("Exceptions")]
|
|
public class ExceptionDetail
|
|
{
|
|
public int Id { get; set; }
|
|
public string Logger { get; set; }
|
|
public string Type { get; set; }
|
|
public string String { get; set; }
|
|
public string Hash { get; set; }
|
|
public string Version { get; set; }
|
|
}
|
|
} |