NodePipeline/NodePipeline.Configuration.Abstractions/Models/Execute/NodeConfig.cs
2026-01-02 20:55:25 +03:00

16 lines
471 B
C#

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<string, string> Parameters { get; set; } = [];
public Dictionary<string, InputSource> Inputs { get; set; } = [];
public HashSet<string> Outputs { get; set; } = [];
}