aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/models/componentsInstances/productInstance.ts
diff options
context:
space:
mode:
Diffstat (limited to 'catalog-ui/src/app/models/componentsInstances/productInstance.ts')
-rw-r--r--catalog-ui/src/app/models/componentsInstances/productInstance.ts13
1 files changed, 13 insertions, 0 deletions
diff --git a/catalog-ui/src/app/models/componentsInstances/productInstance.ts b/catalog-ui/src/app/models/componentsInstances/productInstance.ts
new file mode 100644
index 0000000000..7b73f83988
--- /dev/null
+++ b/catalog-ui/src/app/models/componentsInstances/productInstance.ts
@@ -0,0 +1,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";
+ }
+}