export interface IProductSectionSchedule {
    fri: boolean;
    mon: boolean;
    sat: boolean;
    sun: boolean;
    thu: boolean;
    tue: boolean;
    wed: boolean;
    startAt: string;
    endAt: string;
}
