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

18 lines
302 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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