1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-19 07:52:33 +02:00
Radarr/NzbDrone.Core/Instrumentation/Log.cs

24 lines
456 B
C#
Raw Normal View History

using System;
2013-02-23 20:38:25 +01:00
using NzbDrone.Core.Datastore;
2013-03-24 05:16:00 +01:00
namespace NzbDrone.Core.Instrumentation
{
2013-02-23 20:38:25 +01:00
public class Log : ModelBase
{
2013-03-24 05:16:00 +01:00
public string Message { get; set; }
2011-04-06 05:14:43 +02:00
public DateTime Time { get; set; }
2011-04-06 05:14:43 +02:00
public string Logger { get; set; }
public string Method { get; set; }
2011-04-06 05:14:43 +02:00
public string Exception { get; set; }
2011-04-06 05:14:43 +02:00
public string ExceptionType { get; set; }
public String Level { get; set; }
}
2011-04-10 04:44:01 +02:00
}