Projekt

Obecné

Profil

Stáhnout (286 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1 41741550 Hung Hoang
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
}