diff options
Diffstat (limited to 'src/types/Animation.zig')
| -rw-r--r-- | src/types/Animation.zig | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/types/Animation.zig b/src/types/Animation.zig new file mode 100644 index 0000000..f5d6efc --- /dev/null +++ b/src/types/Animation.zig | |||
| @@ -0,0 +1,11 @@ | |||
| 1 | const PhotoSize = @import("PhotoSize.zig"); | ||
| 2 | |||
| 3 | file_id: []const u8, | ||
| 4 | file_unique_id: []const u8, | ||
| 5 | width: u64, | ||
| 6 | height: u64, | ||
| 7 | duration: u64, | ||
| 8 | thumbnail: ?[]PhotoSize = null, | ||
| 9 | file_name: ?[]const u8 = null, | ||
| 10 | mime_type: ?[]const u8 = null, | ||
| 11 | file_size: ?u64 = null, | ||