// Copyright Epic Games, Inc. All Rights Reserved.
using HordeServer.Utilities;
namespace HordeServer.Acls
{
///
/// Interface which can be implemented by classes that mutate the default ACL
///
public interface IDefaultAclModifier
{
///
/// Modifies the default ACL
///
void Apply(DefaultAclBuilder builder);
}
}