Files
simulation_core/lib/options-parser/Parser/IParsedArgument.cs

13 lines
267 B
C#

namespace Antmicro.OptionsParser
{
public interface IParsedArgument
{
IFlag Flag { get; }
bool HasArgument { get; }
bool IsSeparated { get; }
ElementDescriptor Descriptor { get; set; }
object Value { get; }
}
}