Created
May 17, 2020 18:50
-
-
Save splincode/f6352e15cdd467950a7dbe0a065a2203 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export interface Course { | |
id: number; | |
description: string; | |
iconUrl?: string; | |
courseListIcon?: string; | |
longDescription?: string; | |
category: string; | |
seqNo: number; | |
lessonsCount?: number; | |
promo?: boolean; | |
} | |
export interface Lesson { | |
id: number; | |
description: string; | |
duration: string; | |
seqNo: number; | |
courseId?: number; | |
videoId?: string; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment