export interface BookingPackagePax {
  id: number;
  age?: number;
  guid: string;
  dateOfBirth?: string;
  countryOfBirthId?: number;
  firstName: string;
  lastName: string;

  salutationId?: number;
  preferredLanguageId?: number;
  gender?: number;
  isMainBooker?: boolean;
  initials?: string;

  email: string;
  phone?: string;
  mobilePhone?: string;
}
