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

5 lines
116 B
TypeScript
Executable File

import { Lecture, Section } from "@prisma/client";
export type SectionDto = Section & {
lectures: Lecture[];
};