using System.Text.Json.Serialization; namespace Core.Models.Spt.Server; public record LocaleBase { [JsonPropertyName("global")] public Dictionary>? Global { get; set; } [JsonPropertyName("menu")] public Dictionary>? Menu { get; set; } [JsonPropertyName("languages")] public Dictionary? Languages { get; set; } [JsonPropertyName("server")] public Dictionary>? Server { get; set; } }