export interface ProfessionCategoryType {
  uuid: string;
  name: string;
  description: string | null;
  is_active: boolean;
  created_at: string;
  last_update_time: string;
}

export interface professionsType {
  uuid: string;
  name: string;
  description: string | null;
  is_active: boolean;
  category: ProfessionCategoryType;
  created_at: string;
  last_update_time: string;
}

export interface ExpertiseType {
  id: number;
  uuid: string;
  name: string;
  description: string | null;
  is_active: boolean;
  created_at: string;
  last_update_time: string;
}
