namespace Elsa.Expressions.Models;
///
/// Represents a piece of memory within a memory register
///
public class MemoryBlock
{
///
/// Constructor.
///
public MemoryBlock()
{
}
///
/// Constructor.
///
public MemoryBlock(object? value, object? metadata = null)
{
Value = value;
Metadata = metadata;
}
///
/// The value stored in this block.
///
public object? Value { get; set; }
///
/// Optional metadata about this block.
///
public object? Metadata { get; set; }
}