mirror of
https://github.com/matt-fidd/stratos.git
synced 2026-01-01 22:19:26 +00:00
Added initial class skeletons
This commit is contained in:
27
lib/Student.js
Normal file
27
lib/Student.js
Normal file
@@ -0,0 +1,27 @@
|
||||
'use strict';
|
||||
|
||||
const User = require('./User');
|
||||
|
||||
class Student extends User {
|
||||
constructor() {
|
||||
|
||||
}
|
||||
|
||||
get classes() {
|
||||
|
||||
}
|
||||
|
||||
get tests() {
|
||||
|
||||
}
|
||||
|
||||
get parents() {
|
||||
|
||||
}
|
||||
|
||||
static createStudent() {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = Student;
|
||||
Reference in New Issue
Block a user