Editor/Wiring/Expressions/MethodCallExpression.cs
using System.Collections.Generic;

namespace Grains.RazorDesigner.Wiring;

public sealed record MethodCallExpression : Expression
{
    public CalleeRef Callee { get; init; }
    public IReadOnlyList<Expression> Args { get; init; } = System.Array.Empty<Expression>();
    public bool Await { get; init; }
}