Projekt

Obecné

Profil

Stáhnout (208 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1 79d7de40 Hung Hoang
import {VacationType} from '../enums/common.enum';
2
3
export class DayInfo {
4
  date: Date;
5
  type: VacationType;
6
}
7
8
export class User {
9
  id: number;
10
  name: string;
11
  imageLink: string;
12
  dates: DayInfo[];
13
}