book_manage/packages/common/src/models/section.ts

5 lines
116 B
TypeScript
Raw Normal View History

2025-02-05 15:10:40 +08:00
import { Lecture, Section } from "@prisma/client";
export type SectionDto = Section & {
lectures: Lecture[];
};