A simple record type representing an inline expression in the wiring system. It inherits from Expression and holds a single string property Code.
namespace Grains.RazorDesigner.Wiring;
public sealed record InlineExpression : Expression
{
public string Code { get; init; } = "";
}