import {ModelComponentType} from "../src/app/game-model/ModelComponentType"; export class LoadModel { jsonString: string modelType: ModelComponentType constructor(jsonString: string, modelType: ModelComponentType) { this.jsonString = jsonString; this.modelType = modelType; } }