Files
SPT-Server-Build/Core/Context/ContextVariable.cs
T
2025-01-08 13:41:25 +00:00

8 lines
280 B
C#

namespace Core.Context;
public class ContextVariable(object value, ContextVariableType contextVariableType)
{
public object Value { get; } = value;
public DateTime Timestamp { get; } = DateTime.Now;
public ContextVariableType Type { get; } = contextVariableType;
}