import { OffDayType } from './off-day-type';
export class DaysOff {
username: string;
dateFrom: Date;
dateTo: Date;
type: OffDayType;
}