- Adding Arguments to CommandContext.

--HG--
branch : dev
This commit is contained in:
Suha Can
2010-04-05 19:40:41 -07:00
parent 8f83475fe2
commit 7e36d8bccb

View File

@@ -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<string> Arguments { get; set; }
public NameValueCollection Switches { get; set; }
}
}