ConceptCreator/app/storage/StoreComponent.ts

14 lines
394 B
TypeScript
Raw Permalink Normal View History

2024-03-20 09:26:14 +01:00
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
}
}