mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-06-19 21:38:16 +08:00

* Renames Spectre.Cli to Spectre.Console.Cli. * Now uses Verify with Spectre.Console.Cli tests. * Removes some duplicate definitions. Closes #168
15 lines
371 B
C#
15 lines
371 B
C#
namespace Spectre.Console.Cli.Internal
|
|
{
|
|
/// <summary>
|
|
/// Representation of a multi map.
|
|
/// </summary>
|
|
internal interface IMultiMap
|
|
{
|
|
/// <summary>
|
|
/// Adds a key and a value to the multi map.
|
|
/// </summary>
|
|
/// <param name="pair">The pair to add.</param>
|
|
void Add((object? Key, object? Value) pair);
|
|
}
|
|
}
|