export interface PersonLocationPreference {
  id?: number;
  personId: number;
  locationId: number;
  locationName: string;
  order: number;
}
