projects/maplander/components/src/lib/utils/models/property-type-item.ts
Properties |
amenities |
amenities:
|
Type : AmenityItem[]
|
Optional |
features |
features:
|
Type : AmenityItem[]
|
Optional |
iconName |
iconName:
|
Type : string
|
name |
name:
|
Type : string
|
shortName |
shortName:
|
Type : string
|
value |
value:
|
Type : PropertyTypeEnum
|
import {PropertyTypeEnum} from '@maplander/types';
import {AmenityItem} from '../models/amenity-item';
export interface PropertyTypeItem {
value: PropertyTypeEnum;
iconName: string;
name: string;
shortName: string;
features?: AmenityItem[];
amenities?: AmenityItem[];
}