export interface Destination {
  id: number;
  code: string;
  cms_id?: string;
  has_itenaries?: boolean;
  _is_active: boolean;
  _is_deleted: boolean;
  created_at: string;
  updated_at: string;
}
