Files
UnrealEngine/Engine/Source/Programs/Shared/EpicGames.Horde/Acls/IAclClaim.cs
2025-05-18 13:04:45 +08:00

21 lines
338 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
namespace EpicGames.Horde.Acls
{
/// <summary>
/// Claim for an ACL
/// </summary>
public interface IAclClaim
{
/// <summary>
/// Type of the claim
/// </summary>
string Type { get; }
/// <summary>
/// Value for the claim
/// </summary>
string Value { get; }
}
}