Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05: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; }
}
}