ymanager/webapp/src/app/models/settings.model.ts @ 2ca79f0a
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 |
}
|