src/app/pages/models/project.ts
Properties |
| description |
Type : string
|
|
Defined in src/app/pages/models/project.ts:8
|
| humanReadableProjectName |
Type : string
|
|
Defined in src/app/pages/models/project.ts:5
|
| id |
Type : number
|
|
Defined in src/app/pages/models/project.ts:2
|
| location |
Type : string
|
|
Defined in src/app/pages/models/project.ts:6
|
| name |
Type : string
|
|
Defined in src/app/pages/models/project.ts:3
|
| organization |
Type : string
|
|
Defined in src/app/pages/models/project.ts:7
|
| projectName |
Type : string
|
|
Defined in src/app/pages/models/project.ts:4
|
export class Project {
id: number;
name: string;
projectName: string;
humanReadableProjectName: string;
location: string;
organization: string;
description: string;
}