Server/project/src/context/ContextVariable.ts

30 lines
570 B
TypeScript
Raw Normal View History

2023-03-03 16:23:46 +01:00
import { ContextVariableType } from "./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;
}
}