Add FolderCreated and ProfileCreated models

This commit is contained in:
Sosthene 2025-06-11 21:47:50 +02:00
parent 8eec5b3455
commit aad1a4bfe2
2 changed files with 12 additions and 0 deletions

View File

@ -12,3 +12,9 @@ export interface FolderData {
motes: string[];
stakeholders: string[];
}
export interface FolderCreated {
processId: string,
process: any, // Process
folderData: FolderData,
}

View File

@ -9,3 +9,9 @@ export interface ProfileData {
country: string;
idDocument?: string;
}
export interface ProfileCreated {
processId: string,
process: any, // Actually Process
profileData: ProfileData,
}