import type { Destination } from "./destination";

export interface DestinationItenary {
  id: number;
  name: string;
  destination_id: Pick<Destination, "id">;
  available_from: string;
  available_to: string;
  cms_id?: string;
  comment?: string;
  _is_active: boolean;
  _is_deleted: boolean;
  created_at: string;
  updated_at: string;
}
