Editor/Wiring/Expressions/LiteralExpression.cs

A small record type used by the editor wiring system that represents a literal expression. It stores a JsonElement named Value.

using System.Text.Json;

namespace Grains.RazorDesigner.Wiring;

public sealed record LiteralExpression : Expression
{
    public JsonElement Value { get; init; }
}