mirror of
https://github.com/nsnail/spectre.console.git
synced 2025-07-07 21:17:15 +08:00
Move Spectre.Console.Cli to it's own package
This commit is contained in:

committed by
Patrik Svensson

parent
b600832e00
commit
36ca22ffac
15
src/Spectre.Console.Cli/Internal/RemainingArguments.cs
Normal file
15
src/Spectre.Console.Cli/Internal/RemainingArguments.cs
Normal file
@ -0,0 +1,15 @@
|
||||
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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user