private bool?GetBit(PermissionsBits pos)
 {
     if (Allow.GetBit(pos))
     {
         return(true);
     }
     else if (Deny.GetBit(pos))
     {
         return(false);
     }
     else
     {
         return(null);
     }
 }