UNPKG

@tomei/rental

Version:
20 lines (18 loc) 439 B
import { BookingStatusEnum } from '../enum/booking.enum'; export interface IBookingAttr { BookingNo: string; CustomerId: string; CustomerType: string; ItemId: string; ItemType: string; PriceId: string; ScheduledStartDateTime: Date; ScheduledEndDateTime: Date; BookingFee: number; Status: BookingStatusEnum; CancelRemarks: string; CreatedById: string; CreatedAt: Date; UpdatedById: string; UpdatedAt: Date; }