diff --git a/src/Orchard/Commands/CommandContext.cs b/src/Orchard/Commands/CommandContext.cs index 223ba3542..51a5162ed 100644 --- a/src/Orchard/Commands/CommandContext.cs +++ b/src/Orchard/Commands/CommandContext.cs @@ -1,10 +1,12 @@ -using System.Collections.Specialized; +using System.Collections.Generic; +using System.Collections.Specialized; namespace Orchard.Commands { public class CommandContext { public string Input { get; set; } public string Output { get; set; } public string Command { get; set; } + public IEnumerable Arguments { get; set; } public NameValueCollection Switches { get; set; } } }