interface ActivityType {
  name: string;
  is_location_required: boolean;
  is_active: boolean;
}

export type { ActivityType };
