Add FolderCreated and ProfileCreated models
This commit is contained in:
parent
8eec5b3455
commit
aad1a4bfe2
@ -12,3 +12,9 @@ export interface FolderData {
|
|||||||
motes: string[];
|
motes: string[];
|
||||||
stakeholders: string[];
|
stakeholders: string[];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface FolderCreated {
|
||||||
|
processId: string,
|
||||||
|
process: any, // Process
|
||||||
|
folderData: FolderData,
|
||||||
|
}
|
||||||
|
@ -9,3 +9,9 @@ export interface ProfileData {
|
|||||||
country: string;
|
country: string;
|
||||||
idDocument?: string;
|
idDocument?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export interface ProfileCreated {
|
||||||
|
processId: string,
|
||||||
|
process: any, // Actually Process
|
||||||
|
profileData: ProfileData,
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user