Projekt

Obecné

Profil

Stáhnout (324 Bajtů) Statistiky
| Větev: | Tag: | Revize:
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
}
(5-5/6)