mirror of
https://github.com/asphyxia-core/plugins.git
synced 2026-09-26 08:08:02 +03:00
8 lines
141 B
TypeScript
8 lines
141 B
TypeScript
export interface Course {
|
|
collection: "course";
|
|
|
|
courseId: number;
|
|
seen: boolean,
|
|
played: boolean,
|
|
cleared: boolean
|
|
} |