mirror of
https://github.com/CompassConnections/Compass.git
synced 2026-03-02 13:58:18 -05:00
18 lines
558 B
TypeScript
18 lines
558 B
TypeScript
export interface ProfileData {
|
|
id: string;
|
|
name: string;
|
|
image: string;
|
|
profile: {
|
|
location: string;
|
|
gender: string;
|
|
occupation: string;
|
|
personalityType: string;
|
|
conflictStyle: string;
|
|
description: string;
|
|
contactInfo: string;
|
|
intellectualInterests: { interest?: { name?: string, id?: string } }[];
|
|
causeAreas: { causeArea?: { name?: string, id?: string } }[];
|
|
desiredConnections: { connection?: { name?: string, id?: string } }[];
|
|
promptAnswers: { prompt?: string; answer?: string, id?: string }[];
|
|
};
|
|
} |