16 lines
471 B
C#
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; } = [];
|
|
} |