mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2026-02-09 09:16:41 +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 {
|
namespace Orchard.Commands {
|
||||||
public class CommandContext {
|
public class CommandContext {
|
||||||
public string Input { get; set; }
|
public string Input { get; set; }
|
||||||
public string Output { get; set; }
|
public string Output { get; set; }
|
||||||
public string Command { get; set; }
|
public string Command { get; set; }
|
||||||
|
public IEnumerable<string> Arguments { get; set; }
|
||||||
public NameValueCollection Switches { get; set; }
|
public NameValueCollection Switches { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user