UNPKG

mobyo-interfaces

Version:
12 lines (11 loc) 319 B
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; }