| 123456789101112131415161718192021222324252627 |
- class StudentConstructor {
- constructor(
- name,
- userId,
- studentId,
- group,
- email,
- commit,
- projects,
- interface_test,
- pipeline
- ) {
- this.name = name;
- this.userId = userId;
- this.studentId = studentId;
- this.group = group;
- this.email = email;
- this.commit = commit;
- this.projects = projects;
- this.test = {
- "interface-test": interface_test
- };
- this.pipeline = pipeline;
- }
- }
- module.exports = StudentConstructor;
|