using System.Collections.Generic; // ReSharper disable UnusedAutoPropertyAccessor.Global namespace NodePipeline.Configuration.Abstractions.Models.Execute; public class NodeConfig { public string Id { get; set; } = null!; public string Type { get; set; } = null!; public Dictionary Parameters { get; set; } = []; public Dictionary Inputs { get; set; } = []; public HashSet Outputs { get; set; } = []; }