import { IPayioScheduleSlot } from './i-schedule-slots';
export interface IPayioScheduleDay {
    day: string;
    slots: IPayioScheduleSlot[];
}
