Files
DiunaBI/WebAPI/Models/LogEntry.cs
Michał Zieliński 5cb362b5e0 WIP: process layers
2023-09-17 13:00:24 +02:00

25 lines
505 B
C#

using System.ComponentModel.DataAnnotations;
namespace WebAPI.Models
{
public enum LogEntryType
{
info,
warning,
error,
}
public enum LogType {
import,
backup,
process
}
public class LogEntry
{
public LogType LogType { get; set; }
public LogEntryType Type { get; set; }
public string? Message { get; set; }
public string? Title {get; set;}
public DateTime CreatedAt { get; set; }
}
}