1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-19 16:01:46 +02:00
Radarr/NzbDrone.Core/Instrumentation/Log.cs
2011-06-17 18:46:22 -07:00

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