Projekt

Obecné

Profil

Stáhnout (309 Bajtů) Statistiky
| Větev: | Tag: | Revize:
1 4bcef705 Hung Hoang
import {UserType} from '../enums/common.enum';
2
3 41741550 Hung Hoang
export interface Settings {
4 4bcef705 Hung Hoang
  sickdayCount: number;
5
  notification: string;
6 41741550 Hung Hoang
}
7 4bcef705 Hung Hoang
8 f8b40fd5 Hung Hoang
export interface UserSettings {
9 4bcef705 Hung Hoang
  id: number;
10
  vacationCount: number;
11
  sickdayCount: number;
12
  role: UserType;
13
}
14
15 9cc55d8d Václav Jirák
export interface NotificationSettings {
16
  notification: string;
17
}