export interface ISpace { imagePath: string; spaceCategory: string; seats: number; priceHour: number; priceDay: number; priceWeek: number; priceMonth: number; } export interface ISpaceType { id: number; title: string; } export interface IPriceType { id: number; title: string; }