import { IPayioScheduleDay } from './i-schedule-day';
import { IPayioScheduleProduct } from './i-schedule-product';
export interface IPayioSchedule {
    active: boolean;
    createdAt: Date;
    days: IPayioScheduleDay[];
    products: IPayioScheduleProduct[];
    id: string;
    name: string;
    updatedAt: Date;
}
