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

HotelsQuery.cs 473 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
19
  1. namespace MultiDialogsBot
  2. {
  3. using System;
  4. using Microsoft.Bot.Builder.FormFlow;
  5. [Serializable]
  6. public class HotelsQuery
  7. {
  8. [Prompt("Please enter your {&}")]
  9. public string Destination { get; set; }
  10. [Prompt("When do you want to {&}?")]
  11. public DateTime CheckIn { get; set; }
  12. [Numeric(1, int.MaxValue)]
  13. [Prompt("How many {&} do you want to stay?")]
  14. public int Nights { get; set; }
  15. }
  16. }
Tip!

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

Comments

Loading...