using Newtonsoft.Json; namespace Core.Dto.Yaml; public class SpecConfigDto { [JsonProperty("packageTypes")] public Dictionary> PackageTypes { get; set; } = []; [JsonProperty("javaGroup")] public string JavaGroup { get; set; } = ""; [JsonProperty("modelSuffix")] public string ModelSuffix { get; set; } = ""; [JsonProperty("packages")] public List Packages { get; set; } = []; }