summaryrefslogtreecommitdiffstats
path: root/vid-webpack-master/src/app/shared/models/collectionResourceInstance.ts
blob: 28ebb5d4eea9a1bce304ddf0de23e078adc6cadd (plain)
1
2
3
4
5
6
7
8
9
10
11
import {Level1Instance} from "./level1Instance";

export class CollectionResourceInstance extends Level1Instance{
  collectionResourceStoreKey : string;
  statusMessage?: string;

  constructor() {
    super();
    this.collectionResourceStoreKey = null;
  }
}