123456789101112131415161718192021222324252627282930313233343536373839 |
- using System;
- using InABox.Core;
- namespace PRSDesktop
- {
- public enum SecurityTokenType
- {
- Global,
- Group,
- User
- }
- public class SecurityTokenItem
- {
- public SecurityTokenType Type { get; set; }
- public string Descriptor { get; set; }
- public Guid ID { get; set; }
- public Guid RecordID { get; set; }
- public bool Enabled { get; set; }
- }
- public class SecurityDescriptor : BaseObject
- {
- public Guid ID { get; set; }
- public string Group { get; set; }
- public string Category { get; set; }
- public string Descriptor { get; set; }
- public string Description { get; set; }
- public bool Default { get; set; }
- public bool IsGlobal { get; set; }
- public bool IsGroup { get; set; }
- public bool IsUser { get; set; }
- }
- }
|