export interface BookingPackageAllotmentInfo {
  name: string;
  tourCode: string;
  startDate: string;
  startTime: string;
  endDate: string;
  endTime: string;
  totalPlaces: number;
  bookedPlaces: number;
  inOptionPlaces: number;
  status: number;
  customStatusId?: number;
  customAllotmentStatus?: string;
  tagIds: number[];
  allotmentIds: number[];
  cachedAllotmentPriceInfos?: number[];
}
