1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00
Radarr/NzbDrone.Core/Instrumentation/Log.cs
2013-03-27 23:49:38 -07:00

24 lines
456 B
C#

using System;
using NzbDrone.Core.Datastore;
namespace NzbDrone.Core.Instrumentation
{
public class Log : ModelBase
{
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; }
}
}