ln.application/ln.application/IArgument.cs

14 lines
266 B
C#

namespace ln.application
{
public interface IArgument
{
char OptionName { get; }
string LongOptionName { get; }
bool HasArgument { get; }
string HelpString { get; }
string Value { get; set; }
}
}