24 lines
448 B
Java
Executable File
24 lines
448 B
Java
Executable File
package com.magistr.app.dto;
|
|
|
|
public class CreateGroupRequest {
|
|
|
|
private String name;
|
|
private Long educationFormId;
|
|
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
|
|
public void setName(String name) {
|
|
this.name = name;
|
|
}
|
|
|
|
public Long getEducationFormId() {
|
|
return educationFormId;
|
|
}
|
|
|
|
public void setEducationFormId(Long educationFormId) {
|
|
this.educationFormId = educationFormId;
|
|
}
|
|
}
|