ymanager/webapp/src/app/models/user-profile.model.ts @ ecf648bb
1 |
import {RequestStatus, UserType} from '../enums/common.enum'; |
---|---|
2 |
|
3 |
export interface UserProfile { |
4 |
id: number; |
5 |
firstName: string; |
6 |
lastName: string; |
7 |
photo: string; |
8 |
vacationCount: number; |
9 |
sickdayCount: number; |
10 |
status: RequestStatus; |
11 |
role: UserType; |
12 |
notification: Date; |
13 |
}
|
14 |
|
- « Předchozí
- 1
- …
- 4
- 5
- 6
- Další »