This repository has been archived on 2022-03-12. You can view files and clone it, but cannot push or open issues or pull requests.
Lateinicus/src/models/lesson.ts
Alexander Polynomdivision 6734e59a1b feat: Implement routing
2018-08-26 16:23:48 +02:00

8 lines
104 B
TypeScript

export interface ILesson {
name: string;
desc: string;
level: number;
done: boolean;
}