Skip to content

Commit b4f1b35

Browse files
Adding Student class
1 parent 63c1d20 commit b4f1b35

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
package org.launchcode.java.demos.school;
2+
3+
public class Student {
4+
5+
private String name;
6+
private int studentId;
7+
private int numberOfCredits = 0;
8+
private double gpa = 0.0;
9+
10+
}

0 commit comments

Comments
 (0)