роль студента
This commit is contained in:
2025-03-26 14:00:46 +03:00
parent 919e7a2e10
commit 1ae4d1980a
9 changed files with 38 additions and 7 deletions

View File

@@ -3,6 +3,7 @@ import java.io.Serializable;
public enum AccountRole implements Serializable {
Undefined,
User,
Student,
Developer,
Admin;
public String getDescription() {
@@ -11,6 +12,8 @@ public enum AccountRole implements Serializable {
return "не зарегистрирован";
case User:
return "Пользователь";
case Student:
return "Студент";
case Developer:
return "Разработчик";
case Admin: