DepartmentProject/DepartmentPortal/Common/CoreModels/ModelsDepartment/IAcademicPlanModel.cs
2022-12-16 17:43:23 +04:00

17 lines
533 B
C#

using CoreModels.Tools;
using System;
using ToolsModule.ManagmentEntity;
namespace CoreModels.ModelsDepartment
{
[EntityDescription("AcademicPlan", "Учебный план кафедры")]
[EntityDependency("EducationDirection", "EducationDirectionId", "Направление, к которму относится учебный план")]
public interface IAcademicPlanModel : IId
{
Guid? EducationDirectionId { get; }
int YearStart { get; }
DateTime LastUpdateDate { get; }
}
}