| namespace InABox.Core{    public interface ISecurityDescriptor    {        bool Visible { get; }        string Category { get; }        string Type { get; }        string Code { get; }        string Description { get; }        bool Value { get; }        bool HasScope(SecurityDescriptorScope scope);    }}
 |