blob: 8c8d6cc9449ef1f77deeec964c26eab3e0ce6814 (
plain)
1
2
3
4
5
6
7
|
export class ServicePathMapItem {
constructor(public data: MapItemData, public id: string) {}
}
export class MapItemData {
constructor(public name:string, public id: string, public ownerId?: string, public options?: Array<ServicePathMapItem>) {}
}
|