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 361 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
  1. namespace LuisBot
  2. {
  3. using System;
  4. using Microsoft.Bot.Builder.FormFlow;
  5. [Serializable]
  6. public class HotelsQuery
  7. {
  8. [Prompt("Please enter your {&}")]
  9. [Optional]
  10. public string Destination { get; set; }
  11. [Prompt("Near which Airport")]
  12. [Optional]
  13. public string AirportCode { get; set; }
  14. }
  15. }
Tip!

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

Comments

Loading...