export type Destination = {
  id: string | null;
  name: string;
  slug: string;
  code: string;
  address: string;
  country: string;
  content_id: string;
  is_active: boolean | null;
  is_deleted: boolean | null;
};
