using System.Text.Json.Serialization; namespace SPTarkov.Server.Core.Models.Spt.Logging; public record SptLogger { [JsonExtensionData] public Dictionary? ExtensionData { get; set; } public object Error { get; set; } // error: (msg: string | Record) => void; public object Warn { get; set; } // warn: (msg: string | Record) => void; public object Succ { get; set; } // succ?: (msg: string | Record) => void; public object Info { get; set; } // info: (msg: string | Record) => void; public object Debug { get; set; } // debug: (msg: string | Record) => void; } // TODO: needs to be reimplemented however we want to do it in this project