2018-05-03 00:56:06 +02:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace Geekbot.net.Lib.Logger
|
|
|
|
|
{
|
|
|
|
|
public class GeekbotLoggerObject
|
|
|
|
|
{
|
|
|
|
|
public DateTime Timestamp { get; set; }
|
|
|
|
|
public string Type { get; set; }
|
2018-05-06 01:47:13 +02:00
|
|
|
|
public LogSource Source { get; set; }
|
2018-05-03 00:56:06 +02:00
|
|
|
|
public string Message { get; set; }
|
|
|
|
|
public Exception StackTrace { get; set; }
|
|
|
|
|
public object Extra { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|