import { RCSportItem } from './sports'; export interface ReservationObj { id: number; orderId: string; price: number; status: string; sentForClientDate: string; sentForAdminDate: string; createdAt: string; updatedAt: string; name: string; venueName: string; startDate: string; sportType: RCSportItem[]; }