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