Projekt

Obecné

Profil

Stáhnout (283 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1 4bcef705 Hung Hoang
import {RequestStatus, UserType} from '../enums/common.enum';
2 41741550 Hung Hoang
3
export interface UserProfile {
4
  id: number;
5 4bcef705 Hung Hoang
  firstName: string;
6
  lastName: string;
7 41741550 Hung Hoang
  photo: string;
8 4bcef705 Hung Hoang
  vacationCount: number;
9
  sickdayCount: number;
10
  status: RequestStatus;
11
  role: UserType;
12
  notification: Date;
13 41741550 Hung Hoang
}