export interface IBookingFindAllSearchAttr {
  BookingNo?: string;
  CustomerId?: string;
  CustomerType?: string;
  ItemId?: string;
  ItemType?: string;
  PriceId?: string;
  ScheduledStartDateTime?: Date;
  ScheduledEndDateTime?: Date;
  BookingFee?: number;
  Status?: string;
}
