You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
571 B
TypeScript
23 lines
571 B
TypeScript
import { IgissueDetailDto } from "./igissue-detail.dto";
|
|
|
|
export class IgissueSummaryDto {
|
|
code: number;
|
|
summary: string;
|
|
name: string;
|
|
issueType: string;
|
|
source: string;
|
|
identifiedBy: string;
|
|
identifiedDate: Date;
|
|
relatedProject: string;
|
|
assignedTo: number;
|
|
status: string;
|
|
priority: string;
|
|
targetResolutionDate: Date;
|
|
progress: string;
|
|
actualResolutionDate: Date;
|
|
resolutionSummary: string;
|
|
identifiedByEmail: string;
|
|
unreadCount: number;
|
|
igissueDetailDto?: IgissueDetailDto[];
|
|
hold?:string
|
|
} |