I have the following attributes for a form flow case:
public enum Offices{}
[Describe("Country")]
public string Country;
[Prompt("Which office are you working in?{||}")]
public Offices Office;
I want to populate the offices according to the specified country. For example if the user enters India as a Country field, I want the offices to be Mumbai, New Delhi and Pune. If the user enters UAE, I want the offices to be Dubai and Abou Dhabi, etc...
How can I achieve this?