Files
DiunaBI/WebAPI/Models/LogEntry.cs
Michał Zieliski cadb5e50a5 WIP: DataInbox
2024-07-03 19:03:52 +02:00

23 lines
412 B
C#

namespace WebAPI.Models;
public enum LogEntryType
{
Info,
Warning,
Error
}
public enum LogType {
Import,
Backup,
Process,
PowerBi,
DataInbox
}
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; }
}