ISecurityDescriptor.cs 320 B

12345678910111213
  1. namespace InABox.Core
  2. {
  3. public interface ISecurityDescriptor
  4. {
  5. bool Visible { get; }
  6. string Category { get; }
  7. string Type { get; }
  8. string Code { get; }
  9. string Description { get; }
  10. bool Value { get; }
  11. bool HasScope(SecurityDescriptorScope scope);
  12. }
  13. }