diff options
| author | 2024-07-20 17:22:25 +0300 | |
|---|---|---|
| committer | 2024-07-20 17:22:25 +0300 | |
| commit | c70ffd095a6de5cd5b872796a0d82a8c5afc1511 (patch) | |
| tree | 56183274b05a294e357bad4d06b523472a1c4a4a /src/types/MessageReactionUpdated.zig | |
| download | ukkobot-c70ffd095a6de5cd5b872796a0d82a8c5afc1511.tar.gz ukkobot-c70ffd095a6de5cd5b872796a0d82a8c5afc1511.tar.xz ukkobot-c70ffd095a6de5cd5b872796a0d82a8c5afc1511.zip | |
Initial commit
Diffstat (limited to 'src/types/MessageReactionUpdated.zig')
| -rw-r--r-- | src/types/MessageReactionUpdated.zig | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/types/MessageReactionUpdated.zig b/src/types/MessageReactionUpdated.zig new file mode 100644 index 0000000..7da679b --- /dev/null +++ b/src/types/MessageReactionUpdated.zig | |||
| @@ -0,0 +1,11 @@ | |||
| 1 | const Chat = @import("Chat.zig"); | ||
| 2 | const ReactionType = @import("reaction_type.zig").ReactionType; | ||
| 3 | const User = @import("User.zig"); | ||
| 4 | |||
| 5 | chat: Chat, | ||
| 6 | message_id: u64, | ||
| 7 | user: ?User = null, | ||
| 8 | actor_chat: ?Chat = null, | ||
| 9 | date: u64, | ||
| 10 | old_reaction: []ReactionType, | ||
| 11 | new_reaction: []ReactionType, | ||