Files
Moonlight/Moonlight/App/Database/Entities/LogsEntries/ErrorLogEntry.cs
2023-03-06 02:21:23 +01:00

12 lines
402 B
C#

namespace Moonlight.App.Database.Entities.LogsEntries;
public class ErrorLogEntry
{
public int Id { get; set; }
public string Stacktrace { get; set; } = "";
public bool System { get; set; }
public string JsonData { get; set; } = "";
public string Ip { get; set; } = "";
public string Class { get; set; } = "";
public DateTime CreatedAt { get; set; } = DateTime.UtcNow;
}