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