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

16 lines
214 B
C#
Raw Normal View History

2021-04-27 18:04:01 +04:00
namespace DepartmentBusinessLogic.Enums
{
/// <summary>
/// Учебный курс
/// </summary>
public enum AcademicCourse
{
Курс_1 = 1,
Курс_2 = 2,
Курс_3 = 3,
Курс_4 = 4
}
}