Import from internal git

This commit is contained in:
2025-10-11 13:08:09 +02:00
commit 97aaa715dc
175 changed files with 7014 additions and 0 deletions

16
Core/Yaml/YamlConfig.cs Normal file
View File

@@ -0,0 +1,16 @@
using Core.SpecConfig;
namespace Core.Yaml;
public class YamlConfig
{
public PackageTypes PackageTypes;
public int Priority { get; set; }
public SpecType Type { get; set; }
public string NugetPackage { get; set; } = "";
public string NpmPackage { get; set; } = "";
public string JavaGroup { get; set; } = "";
public string ModelSuffix { get; set; } = "";
public bool KeepModels { get; set; } = false;
}