// Copyright Epic Games, Inc. All Rights Reserved. using EpicGames.Horde.Acls; namespace HordeServer.Server { /// /// ACL actions for admin operations /// public static class AdminAclAction { /// /// Ability to read any data from the server. Always inherited. /// public static AclAction AdminRead { get; } = new AclAction("AdminRead"); /// /// Ability to write any data to the server. /// public static AclAction AdminWrite { get; } = new AclAction("AdminWrite"); } }