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

View File

@@ -0,0 +1,21 @@
namespace Core.Settings;
public class OpenApiConfig
{
public required Location Folder { get; set; }
public required Location GeneratorConfigFile { get; set; }
public required Location GeneratorIgnoreFile { get; set; }
public required Location SpecFile { get; set; }
public required Location SpecConfig { get; set; }
public required string SpecExtension { get; set; }
public required string SchemasIdentifier { get; set; }
public required string ConfigIdentifier { get; set; }
public void AddRoot(Location root)
{
SpecConfig = root.ConcatenateWith(SpecConfig);
SpecFile = root.ConcatenateWith(SpecFile);
}
}