using System; namespace Antmicro.OptionsParser { public class ParserConfiguration { public ParserConfiguration() { GenerateHelp = true; ThrowValidationException = false; } public bool AllowUnexpectedArguments { get; set; } public bool ThrowValidationException { get; set; } public bool GenerateHelp { get; set; } public Func CustomOptionEntryHelpGenerator { get; set; } public Func CustomUsageLineGenerator { get; set; } public Func CustomFooterGenerator { get; set; } } }