Editor/Wiring/Symbols/MethodParameter.cs

A simple immutable record that represents a method parameter in the editor wiring system. It stores the parameter name and its type as strings, with defaults of empty name and "object" type.

namespace Grains.RazorDesigner.Wiring;

public sealed record MethodParameter
{
    public string Name { get; init; } = "";
    public string Type { get; init; } = "object";
}