export class Bug {
constructor(
public id: string,
public title: string,
public status: number,
public severity: number,
public description: string,
public createdBy: string,
public createdDate: number,
public updatedBy?: string,
public updatedDate?: number
) {
}
}
The name change might be considered.
This is Bug definition
The name change might be considered.