18 lines
323 B
TypeScript
18 lines
323 B
TypeScript
export interface ProfileData {
|
|
name: string;
|
|
surname: string;
|
|
email: string;
|
|
phone: string;
|
|
address: string;
|
|
postalCode: string;
|
|
city: string;
|
|
country: string;
|
|
idDocument?: string;
|
|
}
|
|
|
|
export interface ProfileCreated {
|
|
processId: string,
|
|
process: any, // Actually Process
|
|
profileData: ProfileData,
|
|
}
|