Hi,
I have this following code from Microsoft bot framework.
- public enum BalanceOptions
- {
- Available,
- Current,
- Pending,
- Statement
- }
- [Serializable]
- public class Balance
- {
- public BalanceOptions? Type_of_Balance;
- public DateTime? ForBalance;
- public static IForm
BuildForm() - {
- return new FormBuilder
() - //.Message("Welcome to eZCard, My name is Doe !")
- .Build();
- }
- }
Please help.

Replies
Know the answer? Post it — somebody with the same question will find it here.