Files
irth-new-client/src/types/IUnit.ts
T

17 lines
307 B
TypeScript

export interface Unit {
id: string;
unitNo: string;
project: string;
floor: string;
unitType: string;
unitView: string;
state: string;
noOfBathrooms: number;
suitsArea: number;
squareFt: number;
noOfParkingSpace: number;
salesPrice: number;
balconyArea: number;
wing?: string;
}