Editor/Wiring/Actions/InlineAction.cs

A simple record type used by the editor wiring system, representing an inline action that contains source code. It derives from Action and stores a single string property Code.

namespace Grains.RazorDesigner.Wiring;

public sealed record InlineAction : Action
{
    public string Code { get; init; } = "";
}