import { IAtEmployee } from "../IAtEmployee"; import { IAtShift } from "./IAtShift"; export interface ICoreEmployeeSchedule { employee: IAtEmployee; fromDate: Date; toDate: Date; workschedule: IAtShift[]; }