aboutsummaryrefslogtreecommitdiff
path: root/src/models/Lab.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/models/Lab.js')
-rw-r--r--src/models/Lab.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/models/Lab.js b/src/models/Lab.js
deleted file mode 100644
index 2e4412d..0000000
--- a/src/models/Lab.js
+++ /dev/null
@@ -1,17 +0,0 @@
-import EventInfo from '@/models/EventInfo';
-
-export default class Lab {
- constructor(course = 0, section = 0, event = new EventInfo()) {
- this.course = course;
- this.section = section;
- this.event = event;
- }
-
- get id() {
- return `${this.course}-${this.section}`;
- }
-
- get fullInfo() {
- return `${this.id} ${this.event.info}`;
- }
-}