aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/services/responses/properties.response.ts
blob: a3d82500eb1412fd35609f28868c5cc2650fdeb2 (plain)
1
2
3
4
5
6
7
export class PropertiesResponse {
    properties: Array<Property>;
}

class Property {
    name: string
}