DepartmentProject/DepartmentPortal/Department/DepartmentBusinessLogic/Enums/StudentState.cs

20 lines
325 B
C#
Raw Normal View History

2021-04-12 16:57:29 +04:00
namespace DepartmentBusinessLogic.Enums
{
/// <summary>
/// Статус студента
/// </summary>
public enum StudentState
{
Неопределен = -1,
2021-04-12 16:57:29 +04:00
Учится = 0,
Академ = 1,
Завершил = 2,
Отчислен = 3,
Ушел = 4
2021-04-12 16:57:29 +04:00
}
}