first commit

This commit is contained in:
Your NamebaishaliHolocron
2026-06-15 12:57:03 +05:30
commit b9ac5ae0b2
398 changed files with 49583 additions and 0 deletions

View File

@@ -0,0 +1,46 @@
export interface Project {
projectIdentifier: string;
projectManager: string;
projectName: string;
projectStatus: string;
projectNumber: string;
parentProjectNo: string;
contractNumber: string;
projectClient: string;
projectCity: string;
projectCountry: string;
currency: string;
projectImage: string;
contractUpload: string;
source: string;
productType: string;
expenses: string;
formattedActualRevenueIncludingVAT_deal: string;
isCompleted: boolean;
groupNotExist: boolean;
isDebtRevenue_deal: boolean;
projectDescription: string;
createdById: string;
updatedBy: string;
projectManagerDelegates: string;
projectStartDate: string;
contractedStartDate: string;
contractedEndDate: string;
createdOn: string;
updatedOn: string;
projectTeam: string[];
projectTeamUnderProjectManager: string[];
projectTeamUnderProjectManagerDelegates: string[];
groupAssigneesEditStr: string;
groupAssigneesViewStr: string;
participants: Record<string, any>;
contractedProductIdentifierWiseDataObj: Record<string, any>;
productIdentifier: string;
}