summaryrefslogtreecommitdiff
path: root/src/types/PollAnswer.zig
diff options
context:
space:
mode:
Diffstat (limited to 'src/types/PollAnswer.zig')
-rw-r--r--src/types/PollAnswer.zig7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/types/PollAnswer.zig b/src/types/PollAnswer.zig
new file mode 100644
index 0000000..7d4985c
--- /dev/null
+++ b/src/types/PollAnswer.zig
@@ -0,0 +1,7 @@
1const Chat = @import("Chat.zig");
2const User = @import("User.zig");
3
4poll_id: []const u8,
5voter_chat: ?Chat,
6user: ?User,
7option_ids: []u64,