namespace Spectre.Console
{
///
/// Represents a link identity generator.
///
public interface ILinkIdentityGenerator
{
///
/// Generates an ID for the given link.
///
/// The link.
/// The link text.
/// A unique ID for the link.
public int GenerateId(string link, string text);
}
}