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