2022-03-18 21:44:04 +04:00
|
|
|
|
using CoreModels.Tools;
|
2022-03-20 10:10:44 +04:00
|
|
|
|
using ToolsModule.ManagmentEntity;
|
2022-03-18 21:44:04 +04:00
|
|
|
|
|
|
|
|
|
namespace CoreModels.ModelsDepartment
|
|
|
|
|
{
|
2022-03-20 10:10:44 +04:00
|
|
|
|
[EntityDescription("Post", "Должность на кафедры")]
|
2022-03-18 21:44:04 +04:00
|
|
|
|
public interface IPostModel : IId
|
|
|
|
|
{
|
|
|
|
|
string PostName { get; }
|
|
|
|
|
|
|
|
|
|
int? Hours { get; }
|
|
|
|
|
|
|
|
|
|
int Order { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|