/// <summary> /// Remove an ACL entry from this group /// </summary> public bool RemoveEntry(AclEntry entry) { return(MtaServer.AclGroupRemoveACL(group, entry.ACL)); }
/// <summary> /// Add a new ACL entry to this group /// </summary> public bool AddEntry(AclEntry entry) { return(MtaServer.AclGroupAddACL(group, entry.ACL)); }