ln.application/ln.application/IArgument.cs

14 lines
266 B
C#
Raw Normal View History

2020-11-18 00:04:57 +01:00
namespace ln.application
{
public interface IArgument
{
char OptionName { get; }
string LongOptionName { get; }
bool HasArgument { get; }
string HelpString { get; }
string Value { get; set; }
}
}