first commit
This commit is contained in:
35
frontend/app/utils/interface/issue.ts
Normal file
35
frontend/app/utils/interface/issue.ts
Normal file
@@ -0,0 +1,35 @@
|
||||
export interface IssueData {
|
||||
issueId?: string;
|
||||
|
||||
issueTitle: string;
|
||||
|
||||
issueProbability: number;
|
||||
|
||||
grossIssueValue: number;
|
||||
|
||||
probableIssueValue: number;
|
||||
|
||||
probableIssueValueInUSD: number;
|
||||
|
||||
issueImpact: string;
|
||||
|
||||
issueOwner: string;
|
||||
|
||||
issueDescription: string;
|
||||
|
||||
mitigationAction?: string;
|
||||
|
||||
projectIdentifier: string;
|
||||
|
||||
financialIssue: boolean;
|
||||
|
||||
issueCreatedDate?: string;
|
||||
|
||||
issueOptionsSelectId?: string;
|
||||
|
||||
issueStatus?: string;
|
||||
|
||||
issueAge?: number;
|
||||
|
||||
effectedSprintId?: string;
|
||||
}
|
||||
Reference in New Issue
Block a user