14 lines
No EOL
387 B
C#
14 lines
No EOL
387 B
C#
using System;
|
|
|
|
namespace Geekbot.net.Lib.Logger
|
|
{
|
|
public class GeekbotLoggerObject
|
|
{
|
|
public DateTime Timestamp { get; set; }
|
|
public string Type { get; set; }
|
|
public LogSource Source { get; set; }
|
|
public string Message { get; set; }
|
|
public Exception StackTrace { get; set; }
|
|
public object Extra { get; set; }
|
|
}
|
|
} |