mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00
- Adding Arguments to CommandContext.
--HG-- branch : dev
This commit is contained in:
@@ -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; }
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user