feat(datasync): add pipeline configuration models
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
namespace JdeScoping.DataSync.Configuration;
|
||||
|
||||
public record PipelinesRoot(
|
||||
PipelineSettings? Settings, // Optional - defaults applied if missing
|
||||
Dictionary<string, PipelineConfig> Pipelines)
|
||||
{
|
||||
public PipelineSettings EffectiveSettings => Settings ?? new PipelineSettings();
|
||||
}
|
||||
|
||||
public record PipelineSettings(
|
||||
string Timezone = "UTC");
|
||||
Reference in New Issue
Block a user