22 lines
397 B
C#
22 lines
397 B
C#
namespace WebAPI.Models;
|
|
|
|
public enum LogEntryType
|
|
{
|
|
Info,
|
|
Warning,
|
|
Error
|
|
}
|
|
public enum LogType {
|
|
Import,
|
|
Backup,
|
|
Process,
|
|
PowerBi
|
|
}
|
|
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; }
|
|
} |