Class CommandRequestModel
Model describing request for command execution.
public class CommandRequestModel
- Inheritance
-
objectCommandRequestModel
- Extension Methods
Properties
Command
Name of the command.
[Required]
public string Command { get; set; }
Property Value
- string
Data
Data for the command.
public string Data { get; set; }
Property Value
- string
Files
Files uploaded for the command.
public IFormFileCollection Files { get; set; }
Property Value
- IFormFileCollection
Path
Path of the page.
[Required(AllowEmptyStrings = true)]
public string Path { get; set; }
Property Value
- string