using Microsoft.Extensions.Logging; namespace DigitalData.Core.DTO { public class Notice { public Enum? Flag { get; init; } = null; public LogLevel Level { get; init; } = LogLevel.None; public List Messages { get; init; } = new(); } }