Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

23 lines
557 B
C#

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