angular-practice/demo-app/src/app/housinglocation.ts

11 lines
180 B
TypeScript

export interface HousingLocation {
id: number;
name: string;
city: string;
state: string;
photo: string;
availableUnits: number;
wifi: boolean;
laundry: boolean;
}