Files
Your NamebaishaliHolocron b9ac5ae0b2 first commit
2026-06-15 12:57:03 +05:30

47 lines
1.2 KiB
TypeScript

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;
}