import { IDefaultAttributes } from './commonInterface'; import { RMS_BOOKING_STATUS } from '../constants/app'; export interface IRmsFacilityBookingAttributes extends IDefaultAttributes { id: string; instituteId: string; facilityId: string; bookedBy: string; purpose: string; startTime: Date; endTime: Date; attendeesCount?: number | null; status: RMS_BOOKING_STATUS; approvedBy?: string | null; rejectionReason?: string | null; }