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