-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add all category filters in the PLACES section
- Loading branch information
1 parent
7b28638
commit 5830037
Showing
12 changed files
with
990 additions
and
34 deletions.
There are no files selected for viewing
18 changes: 18 additions & 0 deletions
18
unity-renderer/Assets/DCLServices/PlacesAPIService/PlaceCategoriesAPIResponse.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace DCLServices.PlacesAPIService | ||
{ | ||
[Serializable] | ||
public class PlaceCategoriesAPIResponse | ||
{ | ||
public bool ok; | ||
public List<PlaceCategoryInfo> data; | ||
} | ||
|
||
[Serializable] | ||
public class PlaceCategoryInfo | ||
{ | ||
public string name; | ||
} | ||
} |
3 changes: 3 additions & 0 deletions
3
unity-renderer/Assets/DCLServices/PlacesAPIService/PlaceCategoriesAPIResponse.cs.meta
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.