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

16 lines
264 B
C#
Raw Normal View History

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