blob: 060519b83dbaf8567fefa94109dfc8c3d0c9876d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/**
* Created by obarda on 2/4/2016.
*/
'use strict';
import {ComponentInstance} from "./componentInstance";
export class ServiceInstance extends ComponentInstance {
constructor(componentInstance?:ServiceInstance) {
super(componentInstance);
this.iconSprite = "sprite-services-icons";
}
}
|