16 lines
437 B
C#
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;
|
|
|
|
} |