14 lines
394 B
TypeScript
14 lines
394 B
TypeScript
|
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
|
||
|
}
|
||
|
}
|