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/ChatShared.zig | |
| download | ukkobot-c70ffd095a6de5cd5b872796a0d82a8c5afc1511.tar.gz ukkobot-c70ffd095a6de5cd5b872796a0d82a8c5afc1511.tar.xz ukkobot-c70ffd095a6de5cd5b872796a0d82a8c5afc1511.zip | |
Initial commit
Diffstat (limited to 'src/types/ChatShared.zig')
| -rw-r--r-- | src/types/ChatShared.zig | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/types/ChatShared.zig b/src/types/ChatShared.zig new file mode 100644 index 0000000..7b49f02 --- /dev/null +++ b/src/types/ChatShared.zig | |||
| @@ -0,0 +1,7 @@ | |||
| 1 | const PhotoSize = @import("PhotoSize.zig"); | ||
| 2 | |||
| 3 | request_id: u64, | ||
| 4 | chat_id: i64, | ||
| 5 | title: ?[]const u8 = null, | ||
| 6 | username: ?[]const u8 = null, | ||
| 7 | photo: ?[]PhotoSize = null, | ||