DepartmentProject/DepartmentPortal/Common/CoreModels/ModelsDepartment/IPostModel.cs

15 lines
291 B
C#

using CoreModels.Tools;
using ToolsModule.ManagmentEntity;
namespace CoreModels.ModelsDepartment
{
[EntityDescription("Post", "Должность на кафедры")]
public interface IPostModel : IId
{
string PostName { get; }
int? Hours { get; }
int Order { get; }
}
}