Files
DiunaBI/WebAPI/Models/LogEntry.cs
2024-08-25 16:45:36 +02:00

24 lines
423 B
C#

namespace WebAPI.Models;
public enum LogEntryType
{
Info,
Warning,
Error
}
public enum LogType {
Import,
Backup,
Process,
PowerBi,
DataInbox,
Queue
}
public class LogEntry
{
public LogType LogType { get; init; }
public LogEntryType Type { get; init; }
public string? Message { get; init; }
public string? Title {get; init;}
public DateTime CreatedAt { get; init; }
}