DepartmentProject/DepartmentPortal/Common/CoreModels/ModelsSecurity/IRoleModel.cs

16 lines
393 B
C#
Raw Normal View History

using CoreModels.Tools;
2022-03-20 10:10:44 +04:00
using ToolsModule.ManagmentEntity;
namespace CoreModels.ModelsSecurity
{
/// <summary>
/// Модель, описывающиая роль в системе
/// </summary>
[EntityDescription("Role", "Роли в системе")]
public interface IRoleModel : IId
{
string RoleName { get; }
int RolePriority { get; }
}
}