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