2022-03-18 21:34:16 +04:00
|
|
|
|
using CoreModels.Tools;
|
2022-03-18 22:38:52 +04:00
|
|
|
|
using ToolsModule.Attributes;
|
2022-03-18 21:34:16 +04:00
|
|
|
|
|
|
|
|
|
namespace CoreModels.ModelsDepartment
|
|
|
|
|
{
|
|
|
|
|
[EntityDescription("DisciplineBlock", "Аудитрия кафедры")]
|
|
|
|
|
public interface IDisciplineBlockModel : IId
|
|
|
|
|
{
|
|
|
|
|
string Title { get; }
|
|
|
|
|
|
|
|
|
|
bool DisciplineBlockUseForGrouping { get; }
|
|
|
|
|
|
|
|
|
|
int DisciplineBlockOrder { get; }
|
|
|
|
|
|
|
|
|
|
string DisciplineBlockBlueAsteriskName { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|