Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

Survey.cs 458 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  1. namespace CreateNewConversationBot
  2. {
  3. using System;
  4. using Microsoft.Bot.Builder.FormFlow;
  5. [Serializable]
  6. public class Survey
  7. {
  8. [Prompt("Hello... What's your name?")]
  9. public string Name { get; set; }
  10. [Prompt("How many years have you been coding?")]
  11. public int YearsCoding { get; set; }
  12. [Prompt("What's your preferred programming language?")]
  13. public string Language { get; set; }
  14. }
  15. }
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...