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

9 lines
124 B
C#
Raw Normal View History

namespace Antmicro.OptionsParser
{
public interface IUnexpectedArgument
{
string Value { get; }
}
}