8 lines
282 B
C#
8 lines
282 B
C#
namespace Types.Context;
|
|
|
|
public class ContextVariable(object value, ContextVariableType contextVariableType)
|
|
{
|
|
public object Value { get; } = value;
|
|
public DateTime Timestamp { get; } = DateTime.Now;
|
|
public ContextVariableType Type { get; } = contextVariableType;
|
|
} |