namespace Spectre.Console.Cli.Internal { /// /// Representation of a multi map. /// internal interface IMultiMap { /// /// Adds a key and a value to the multi map. /// /// The pair to add. void Add((object? Key, object? Value) pair); } }