first commit
This commit is contained in:
46
frontend/app/utils/interface/project.ts
Normal file
46
frontend/app/utils/interface/project.ts
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user