projects/maplander/components/src/lib/utils/models/property-card-info.ts
Properties |
address |
address:
|
Type : Address
|
authUsers |
authUsers:
|
Type : string
|
currency |
currency:
|
Type : string
|
features |
features:
|
Type : Features
|
Optional |
image |
image:
|
Type : string
|
offering |
offering:
|
Type : OfferingTypeEnum
|
price |
price:
|
Type : number
|
propertyId |
propertyId:
|
Type : string
|
status |
status:
|
Type : StatusTypeEnum
|
Optional |
type |
type:
|
Type : PropertyTypeEnum
|
url |
url:
|
Type : string
|
import {Address, Features, OfferingTypeEnum, PropertyTypeEnum, StatusTypeEnum} from '@maplander/types';
export interface PropertyCardInfo {
address: Address;
authUsers: string;
currency: string;
propertyId: string;
image: string;
offering: OfferingTypeEnum;
price: number;
type: PropertyTypeEnum;
url: string;
status?: StatusTypeEnum;
features?: Features;
}