cal.pub0.org/lib/schedule.model.tsx

7 lines
126 B
TypeScript
Raw Normal View History

2021-06-14 18:53:20 +00:00
import {Dayjs} from "dayjs";
export default interface Schedule {
id: number | null;
2021-06-14 18:53:20 +00:00
startDate: Dayjs;
endDate: Dayjs;
}