export interface PersonCountryPreference {
  id?: number;
  personId: number;
  countryId: number;
  countryName: string;
  order: number;
}
