19 lines
467 B
C#
19 lines
467 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace Core.Dto.Yaml;
|
|
|
|
public class SpecConfigDto
|
|
{
|
|
|
|
[JsonProperty("packageTypes")]
|
|
public Dictionary<string, List<string>> PackageTypes { get; set; } = [];
|
|
|
|
[JsonProperty("javaGroup")]
|
|
public string JavaGroup { get; set; } = "";
|
|
|
|
[JsonProperty("modelSuffix")]
|
|
public string ModelSuffix { get; set; } = "";
|
|
|
|
[JsonProperty("packages")]
|
|
public List<PackageConfigDto> Packages { get; set; } = [];
|
|
} |