I'm trying to get a list of enums as an option.
[OptionList('m', "modules", HelpText = "List of modules you are going to install or uninstall.")]
public List<RegistrationType> Modules { get; set; }
Unfortunately it expects it to be a list of strings. Any idea on how to make it work as documentation of the lib is a bit short.
Thanks