mirror of
https://github.com/matt-fidd/stratos.git
synced 2026-01-01 22:39:26 +00:00
42 lines
265 B
JavaScript
42 lines
265 B
JavaScript
'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;
|