add
This commit is contained in:
parent
3a1a2a2517
commit
f0897ba69f
|
@ -0,0 +1,19 @@
|
|||
import { LectureType } from "@nice/common";
|
||||
|
||||
export interface SectionData {
|
||||
id: string;
|
||||
title: string;
|
||||
content?: string;
|
||||
courseId?: string;
|
||||
}
|
||||
|
||||
export interface LectureData {
|
||||
id: string;
|
||||
title: string;
|
||||
meta?: {
|
||||
type?: LectureType;
|
||||
fieldIds?: [];
|
||||
};
|
||||
content?: string;
|
||||
sectionId?: string;
|
||||
}
|
Loading…
Reference in New Issue