export type DestinationUnit = {
  id: string | null;
  code: string;
  name: string;
  thumbnail: string;
  is_active: boolean | null;
  is_deleted: boolean | null;
  is_reservation_allowed: boolean | null;
};
