Skip to content

Instantly share code, notes, and snippets.

@splincode
Created May 17, 2020 18:50
Show Gist options
  • Save splincode/f6352e15cdd467950a7dbe0a065a2203 to your computer and use it in GitHub Desktop.
Save splincode/f6352e15cdd467950a7dbe0a065a2203 to your computer and use it in GitHub Desktop.
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