Files
SPT-Server-Build/Core/Context/ContextVariable.cs
T
2025-01-05 02:12:38 +00:00

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;
}