Projekt

Obecné

Profil

Stáhnout (331 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
  firstName: string;
7
  lastName: string;
8
  photo: string;
9
  calendar: [
10
    {
11
      id: number,
12
      date: Date,
13
      from: Time,
14
      to: Time,
15
      type: VacationType;
16
    }
17
  ];
18
}
(5-5/6)