1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-05 10:32:35 +01:00
Radarr/NzbDrone.Core/Instrumentation/Log.cs
2013-02-23 11:38:25 -08:00

25 lines
506 B
C#

using System;
using NzbDrone.Core.Datastore;
using Sqo.Attributes;
namespace NzbDrone.Core.Instrumentation
{
public class Log : ModelBase
{
[Text]
public string Message { get; set; }
public DateTime Time { get; set; }
public string Logger { get; set; }
public string Method { get; set; }
[Text]
public string Exception { get; set; }
public string ExceptionType { get; set; }
public String Level { get; set; }
}
}