/** * Serializer for mentors within a project. */ export type ProjectMentor = { readonly id: number; name: string; description?: string | null; readonly unique_id: string; readonly slug: string; readonly created_at: string | null; };