5 lines
116 B
TypeScript
5 lines
116 B
TypeScript
|
|
import { Lecture, Section } from "@prisma/client";
|
||
|
|
|
||
|
|
export type SectionDto = Section & {
|
||
|
|
lectures: Lecture[];
|
||
|
|
};
|