13 lines
255 B
C#
13 lines
255 B
C#
|
using CommandLine;
|
||
|
|
||
|
namespace Archiver;
|
||
|
|
||
|
public class Options
|
||
|
{
|
||
|
[Option('i', "input", Required = true)]
|
||
|
public IEnumerable<string> InputFiles { get; set; }
|
||
|
|
||
|
[Option('o', "output", Required = true)]
|
||
|
public string OutputPath { get; set; }
|
||
|
}
|