using CoreModels.Tools; using ModuleTools.Attributes; namespace CoreModels.ModelsSecurity { /// /// Модель, описывающиая роль в системе /// [EntityDescription("Role", "Роли в системе")] public interface IRoleModel : IId { string RoleName { get; } int RolePriority { get; } } }