Files
api-generator/Core/Yaml/YamlConfig.cs
2025-10-11 13:08:09 +02:00

16 lines
437 B
C#

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;
}