summaryrefslogtreecommitdiff
path: root/src/types/Venue.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/types/Venue.zig')
-rw-r--r--src/types/Venue.zig9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/types/Venue.zig b/src/types/Venue.zig
new file mode 100644
index 0000000..6ae61f3
--- /dev/null
+++ b/src/types/Venue.zig
@@ -0,0 +1,9 @@
1const Location = @import("Location.zig");
2
3location: Location,
4title: []const u8,
5address: []const u8,
6foursquare_id: ?[]const u8 = null,
7foursquare_type: ?[]const u8 = null,
8google_place_id: ?[]const u8 = null,
9google_place_type: ?[]const u8 = null,