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

Init TeacherCreateDTO.java

parent 4ed96136
No related branches found
No related tags found
No related merge requests found
package cz.cvut.fit.tjv.seidlpet.semestralka.data.dto;
public class TeacherCreateDTO {
private final String firstName;
private final String lastName;
public TeacherCreateDTO( String firstName, String lastName) {
this.firstName = firstName;
this.lastName = lastName;
}
public String getFirstName() {
return firstName;
}
public String getLastName() {
return lastName;
}
}
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