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