Skip to content
Snippets Groups Projects
Commit 6ff2fab9 authored by Petr Seidl's avatar Petr Seidl
Browse files

Init StudentCreateDTO.java

parent 1a87410b
No related branches found
No related tags found
No related merge requests found
package cz.cvut.fit.tjv.seidlpet.semestralka.data.dto;
public class StudentCreateDTO {
private final String firstName;
private final String lastName;
private final double gpa;
public StudentCreateDTO(String firstName, String lastName, double gpa) {
this.firstName = firstName;
this.lastName = lastName;
this.gpa = gpa;
}
public String getFirstName() {
return firstName;
}
public String getLastName() {
return lastName;
}
public double getGpa() {
return gpa;
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment