ExternalCommandConfiguration.cs edited online with Bitbucket [skip ci]

This commit is contained in:
Robin Krom 2014-08-27 18:57:40 +00:00
parent ced3bac401
commit f2da7e23df

View file

@ -32,6 +32,9 @@ namespace ExternalCommand {
public class ExternalCommandConfiguration : IniSection {
[IniProperty("Commands", Description="The commands that are available.")]
public List<string> commands;
[IniProperty("DoNotRedirect", Description="Skip redirect of standard output", DefaultValue="false")]
public bool DoNotRedirect;
[IniProperty("Commandline", Description="The commandline for the output command.")]
public Dictionary<string, string> commandlines;