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