using CommandLine; namespace Archiver; public class Options { [Option('i', "input", Required = true)] public IEnumerable InputFiles { get; set; } [Option('o', "output", Required = true)] public string OutputPath { get; set; } }