First Commit

This commit is contained in:
2023-09-19 22:07:16 +03:00
commit 5e4b81c90d
35 changed files with 1092 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
package org.lumijiez.base;
import java.io.Serializable;
public class Grade implements Serializable {
private final String subject;
private final int grade;
public Grade(String subject, int grade) {
this.subject = subject;
this.grade = grade;
}
public String getSubject() {
return subject;
}
public int getGrade() {
return grade;
}
}