mirror of
https://github.com/matt-fidd/stratos.git
synced 2026-01-01 17:59:25 +00:00
Added initial class skeletons
This commit is contained in:
41
lib/TestResult.js
Normal file
41
lib/TestResult.js
Normal file
@@ -0,0 +1,41 @@
|
||||
'use strict';
|
||||
|
||||
class TestResult {
|
||||
studentId;
|
||||
accountId;
|
||||
testId;
|
||||
|
||||
constructor() {
|
||||
|
||||
}
|
||||
|
||||
set mark() {
|
||||
|
||||
}
|
||||
|
||||
get mark() {
|
||||
|
||||
}
|
||||
|
||||
get percentage() {
|
||||
|
||||
}
|
||||
|
||||
get grade() {
|
||||
|
||||
}
|
||||
|
||||
get student() {
|
||||
|
||||
}
|
||||
|
||||
get account() {
|
||||
|
||||
}
|
||||
|
||||
get test {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = TestResult;
|
||||
Reference in New Issue
Block a user