using System.Text.Json.Serialization; using Core.Utils.Json; 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; } }