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