Projekt

Obecné

Profil

Stáhnout (283 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1
import {RequestStatus, UserType} from '../enums/common.enum';
2

    
3
export interface UserProfile {
4
  id: number;
5
  firstName: string;
6
  lastName: string;
7
  photo: string;
8
  vacationCount: number;
9
  sickdayCount: number;
10
  status: RequestStatus;
11
  role: UserType;
12
  notification: Date;
13
}
14

    
(6-6/6)