namespace SharedLibraryCore.Commands
{
///
/// Holds information about command args
///
public class CommandArgument
{
///
/// Name of the argument
///
public string Name { get; set; }
///
/// Indicates if the argument is required
///
public bool Required { get; set; }
}
}