public FluentAstBuilder AtCommand(AtCommandType command, string parameter) { children.Add(new AtCommandNode(command, parameter)); return(this); }
public AtCommandNode(AtCommandType command, string parameter) { Command = command; Parameter = parameter; }