interface ActivitiesType {
  id: string;
  project_id: number;
  project_name: string;
  activity_type_id: number;
  activity_type: string;
  start_date_time: string;
  end_date_time: string;
  total_duration: string;
  description: string;
  employee_name: string;
  is_resumable_activity: boolean | null;
  deleted_at: string | null;
  total_amount?: string | null;
}

export type { ActivitiesType };
