ymanager/webapp/src/app/models/user-basic-information.model.ts @ 6916e74c
1 |
import {VacationType} from '../enums/common.enum'; |
---|---|
2 |
import {Time} from '@angular/common'; |
3 |
|
4 |
export interface UserBasicInformation { |
5 |
id: number; |
6 |
firstName: string; |
7 |
lastName: string; |
8 |
photo: string; |
9 |
calendar: [ |
10 |
{
|
11 |
id: number, |
12 |
date: Date, |
13 |
from: Time, |
14 |
to: Time, |
15 |
type: VacationType; |
16 |
}
|
17 |
];
|
18 |
}
|