5 lines
184 B
C#
5 lines
184 B
C#
|
|
using System.Text.Json;
|
||
|
|
|
||
|
|
namespace Elsa.Expressions.Models;
|
||
|
|
|
||
|
|
public record ExpressionSerializationContext(JsonElement JsonElement, JsonSerializerOptions Options, Type MemoryBlockType);
|