This commit is contained in:
2025-11-04 09:43:48 +01:00
parent 1f24176c32
commit 95c15d48ab
6 changed files with 110 additions and 29 deletions

View File

@@ -0,0 +1,10 @@
export interface HousingLocationInfo {
id: number;
name: string;
city: string;
state: string;
photo: string;
availableUnits: number;
wifi: boolean;
laundry: boolean;
}