summaryrefslogtreecommitdiff
path: root/src/core/ILecture.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/ILecture.ts')
-rw-r--r--src/core/ILecture.ts13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/core/ILecture.ts b/src/core/ILecture.ts
new file mode 100644
index 0000000..39be85e
--- /dev/null
+++ b/src/core/ILecture.ts
@@ -0,0 +1,13 @@
+export interface ILecture {
+ title: string;
+ day: number;
+ begin: number;
+ end: number;
+ info: string;
+ room: string,
+ lecturer: string;
+}
+
+export interface ILectureFilter {
+ (lecture: ILecture): boolean;
+}