15 lines
379 B
C#
15 lines
379 B
C#
|
using CoreModels.Tools;
|
|||
|
using ModuleTools.Attributes;
|
|||
|
|
|||
|
namespace CoreModels.ModelsDepartment
|
|||
|
{
|
|||
|
[EntityDescription("LecturerAcademicDegree", "Ученой степени преподавателя кафедры")]
|
|||
|
public interface ILecturerAcademicDegreeModel : IId
|
|||
|
{
|
|||
|
string LecturerAcademicDegreeName { get; }
|
|||
|
|
|||
|
string Description { get; }
|
|||
|
|
|||
|
int Order { get; }
|
|||
|
}
|
|||
|
}
|