From 7e36d8bccbdf42b91c9c046af39788db38714f05 Mon Sep 17 00:00:00 2001 From: Suha Can Date: Mon, 5 Apr 2010 19:40:41 -0700 Subject: [PATCH] - Adding Arguments to CommandContext. --HG-- branch : dev --- src/Orchard/Commands/CommandContext.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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; } } }