We are using FormFlow in our bot. FormFlow has a feature that allows a user to type the name of the field and it switches to the given field. Let's say we have a model class like this
public class SampleModelClass
{
public string FirstField { get; set; }
public string SecondField { get; set; }
}
When the user is asked to enter FirstField there is a possibility that the user can actually type "first field" which results in asking the question for the FirstField again. Is there any way to disable this and take "first field" as the value of FirstField? Renaming FirstField would work, but we are looking for a better solution