Ittay Stern | f792671 | 2019-07-07 19:23:03 +0300 | [diff] [blame] | 1 | import {Level1Instance} from "./level1Instance"; |
2 | |||||
3 | export class CollectionResourceInstance extends Level1Instance{ | ||||
4 | collectionResourceStoreKey : string; | ||||
5 | statusMessage?: string; | ||||
6 | |||||
7 | constructor() { | ||||
8 | super(); | ||||
9 | this.collectionResourceStoreKey = null; | ||||
10 | } | ||||
11 | } |