using System; using System.Collections.Generic; using Microsoft.Extensions.Logging; namespace SimApi.Logger; public class SimApiLoggerConfiguration { public int EventId { get; set; } public Dictionary LogLevels { get; set; } = new() { [LogLevel.Information] = ConsoleColor.Green }; }