mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-07-07 13:08:14 +08:00
15 lines
366 B
C#
15 lines
366 B
C#
namespace Spectre.Console.Cli;
|
|
|
|
internal sealed class RemainingArguments : IRemainingArguments
|
|
{
|
|
public IReadOnlyList<string> Raw { get; }
|
|
public ILookup<string, string?> Parsed { get; }
|
|
|
|
public RemainingArguments(
|
|
ILookup<string, string?> remaining,
|
|
IReadOnlyList<string> raw)
|
|
{
|
|
Parsed = remaining;
|
|
Raw = raw;
|
|
}
|
|
} |