ymanager/webapp/src/app/employees/user.model.ts @ a923ada8
1 |
import {VacationType} from '../enums/common.enum'; |
---|---|
2 |
|
3 |
export class DayInfo { |
4 |
date: Date; |
5 |
type: VacationType; |
6 |
}
|
7 |
|
8 |
export class User { |
9 |
id: number; |
10 |
name: string; |
11 |
imageLink: string; |
12 |
dates: DayInfo[]; |
13 |
}
|
14 |
|
- « Předchozí
- 1
- …
- 3
- 4
- 5
- Další »