Add IPMonitor
This commit is contained in:
17
IPMonitor/Services/Arguments.cs
Executable file
17
IPMonitor/Services/Arguments.cs
Executable file
@@ -0,0 +1,17 @@
|
||||
namespace IPMonitor
|
||||
{
|
||||
public class Arguments : IArguments
|
||||
{
|
||||
private readonly String[] _args;
|
||||
|
||||
public Arguments(String[] args)
|
||||
{
|
||||
_args = args ?? throw new ArgumentNullException(nameof(args));
|
||||
}
|
||||
|
||||
public String[] GetArguments()
|
||||
{
|
||||
return _args;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user