export interface BookingPackageRequest<T> {
  officeId: number;
  agentId?: number;
  payload: T;
}
