ymanager/frontend/src/app/shared/days-off.model.ts @ 0d1b0550
1 |
import { OffDayType } from './off-day-type'; |
---|---|
2 |
|
3 |
export class DaysOff { |
4 |
username: string; |
5 |
dateFrom: Date; |
6 |
dateTo: Date; |
7 |
type: OffDayType; |
8 |
}
|