StudentConstructor.js 487 B

123456789101112131415161718192021222324252627
  1. class StudentConstructor {
  2. constructor(
  3. name,
  4. userId,
  5. studentId,
  6. group,
  7. email,
  8. commit,
  9. projects,
  10. interface_test,
  11. pipeline
  12. ) {
  13. this.name = name;
  14. this.userId = userId;
  15. this.studentId = studentId;
  16. this.group = group;
  17. this.email = email;
  18. this.commit = commit;
  19. this.projects = projects;
  20. this.test = {
  21. "interface-test": interface_test
  22. };
  23. this.pipeline = pipeline;
  24. }
  25. }
  26. module.exports = StudentConstructor;