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