2022-03-18 21:54:25 +04:00
|
|
|
|
using CoreModels.Tools;
|
2022-03-18 22:38:52 +04:00
|
|
|
|
using ToolsModule.Attributes;
|
2022-03-18 21:54:25 +04:00
|
|
|
|
|
|
|
|
|
namespace CoreModels.ModelsDepartment
|
|
|
|
|
{
|
|
|
|
|
[EntityDescription("LecturerAcademicDegree", "Ученой степени преподавателя кафедры")]
|
|
|
|
|
public interface ILecturerAcademicDegreeModel : IId
|
|
|
|
|
{
|
|
|
|
|
string LecturerAcademicDegreeName { get; }
|
|
|
|
|
|
|
|
|
|
string Description { get; }
|
|
|
|
|
|
|
|
|
|
int Order { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|