File size: 231 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
export interface Property {
id: string
isNew: boolean
imageUrl: string
imageAlt: string
beds: number
baths: number
title: string
formattedPrice: string
reviewCount: number
rating: number
description: string
}
|