diff options
Diffstat (limited to 'src/models/Lab.js')
| -rw-r--r-- | src/models/Lab.js | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/models/Lab.js b/src/models/Lab.js new file mode 100644 index 0000000..2e4412d --- /dev/null +++ b/src/models/Lab.js @@ -0,0 +1,17 @@ +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}`; + } +} |
