Projekt

Obecné

Profil

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

    
3
export interface Settings {
4
  sickdayCount: number;
5
  notification: string;
6
}
7

    
8
export interface UserSettings {
9
  id: number;
10
  vacationCount: number;
11
  sickdayCount: number;
12
  role: UserType;
13
}
14

    
15
export interface NotificationSettings {
16
  notification: string;
17
}
(4-4/5)