using System.Collections.Generic; // ReSharper disable CollectionNeverUpdated.Global namespace NodePipeline.Configuration.Abstractions.Models.Edit; public class EditorNodeConfig { public string Id { get; set; } = string.Empty; public string Type { get; set; } = string.Empty; public string? Title { get; set; } public string? Description { get; set; } public Dictionary Parameters { get; set; } = []; public Dictionary Inputs { get; set; } = []; public Dictionary Outputs { get; set; } = []; }