This commit is contained in:
2025-04-15 18:03:18 +05:00
parent ca5620f1d0
commit ea830f0289
14 changed files with 397 additions and 12 deletions
+13
View File
@@ -0,0 +1,13 @@
export interface IUnit {
unit_no: string;
project: string;
floor: string;
unit_type: string;
no_of_bathrooms: number;
unit_view: string;
suits_area: number;
square_ft: number;
no_of_parking_space: number;
sales_price: number;
state: string;
}