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; } }