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

RealEstateSearchDialog.cs 521 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
20
21
  1. namespace RealEstateBot.Dialogs
  2. {
  3. using System;
  4. using Search.Dialogs;
  5. using Search.Services;
  6. [Serializable]
  7. public class RealEstateSearchDialog : SearchDialog
  8. {
  9. private static readonly string[] TopRefiners = { "region", "city", "type" };
  10. public RealEstateSearchDialog(ISearchClient searchClient) : base(searchClient, multipleSelection: true)
  11. {
  12. }
  13. protected override string[] GetTopRefiners()
  14. {
  15. return TopRefiners;
  16. }
  17. }
  18. }
Tip!

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

Comments

Loading...