// ReSharper disable UnusedAutoPropertyAccessor.Global
// ReSharper disable ClassNeverInstantiated.Global
namespace NodePipeline.Configuration.Abstractions.Models.Edit;
public class EditorParameterConfig
{
///
/// Parameter name
///
public string Name { get; set; } = null!;
///
/// Parameter human-friendly name
///
public string? Label { get; set; }
public string? Description { get; set; }
public string? Value { get; set; }
}