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

export class ProductInstance extends ComponentInstance {

    constructor(componentInstance?:ProductInstance) {
        super(componentInstance);
        this.iconSprite = "sprite-product-icons";
    }
}