Projekt

Obecné

Profil

Stáhnout (324 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1 41741550 Hung Hoang
import {VacationType} from '../enums/common.enum';
2 c40c10c6 Hung Hoang
import {Time} from '@angular/common';
3 41741550 Hung Hoang
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 c40c10c6 Hung Hoang
      from: Time,
15
      to: Time,
16 41741550 Hung Hoang
      type: VacationType;
17
    }
18
  ];
19
}