mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
28 lines
553 B
C#
28 lines
553 B
C#
using System;
|
|
using PetaPoco;
|
|
|
|
namespace NzbDrone.Core.Instrumentation
|
|
{
|
|
[TableName("Logs")]
|
|
[PrimaryKey("LogId", autoIncrement = true)]
|
|
public class Log
|
|
{
|
|
|
|
public Int64 LogId { get; protected set; }
|
|
|
|
public string Message { get; set; }
|
|
|
|
public DateTime Time { get; set; }
|
|
|
|
public string Logger { get; set; }
|
|
|
|
public string Method { get; set; }
|
|
|
|
public string Exception { get; set; }
|
|
|
|
public string ExceptionType { get; set; }
|
|
|
|
public String Level { get; set; }
|
|
|
|
}
|
|
} |