1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-19 10:54:05 +02:00

24 lines
456 B
C#
Raw Normal View History

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