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