summaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/models/componentsInstances/resourceInstance.ts
blob: be4bde9af9fbf866717bcde108311e0862aee535 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/**
 * Created by obarda on 2/4/2016.
 */
'use strict';
import {ComponentInstance} from "./componentInstance";

export class ResourceInstance extends ComponentInstance {

    constructor(componentInstance?:ResourceInstance) {
        super(componentInstance);

        this.iconSprite = "sprite-resource-icons";
    }
}