Browse Source

Added Attribute List of Courses for the Student

remotes/origin/fdai7780
fdai7600 11 months ago
parent
commit
6b7ae7f768
  1. 1
      src/main/java/org/example/Student.java

1
src/main/java/org/example/Student.java

@ -12,6 +12,7 @@ public class Student {
String studentName; String studentName;
String studentId; String studentId;
String studentRole; String studentRole;
List<Course> courses = new ArrayList<>();
public Student(){ public Student(){

Loading…
Cancel
Save