Server/project/src/context/ContextVariable.ts
2023-11-10 15:23:51 -05:00

31 lines
586 B
TypeScript

import { ContextVariableType } from "@spt-aki/context/ContextVariableType";
export class ContextVariable
{
private value: any;
private timestamp: Date;
private type: ContextVariableType;
constructor(value: any, type: ContextVariableType)
{
this.value = value;
this.timestamp = new Date();
this.type = type;
}
public getValue<T>(): T
{
return this.value;
}
public getTimestamp(): Date
{
return this.timestamp;
}
public getType(): ContextVariableType
{
return this.type;
}
}