security-c4po/security-c4po-angular/src/shared/models/project.model.ts

23 lines
478 B
TypeScript

export class Project {
id: string;
client: string;
title: string;
createdAt: Date;
tester: string;
createdBy: string;
constructor(id: string,
client: string,
title: string,
createdAt: Date,
tester?: string,
createdBy?: string) {
this.id = id;
this.client = client;
this.title = title;
this.createdAt = createdAt;
this.tester = tester;
this.createdBy = createdBy;
}
}