17 lines
421 B
C#
17 lines
421 B
C#
using CoreModels.Tools;
|
|
using ModuleTools.Attributes;
|
|
|
|
namespace CoreModels.ModelsDepartment
|
|
{
|
|
[EntityDescription("DisciplineBlock", "Аудитрия кафедры")]
|
|
public interface IDisciplineBlockModel : IId
|
|
{
|
|
string Title { get; }
|
|
|
|
bool DisciplineBlockUseForGrouping { get; }
|
|
|
|
int DisciplineBlockOrder { get; }
|
|
|
|
string DisciplineBlockBlueAsteriskName { get; }
|
|
}
|
|
} |