diff options
| author | 2025-08-16 13:41:34 +0300 | |
|---|---|---|
| committer | 2025-08-16 13:41:34 +0300 | |
| commit | 9665b6315e028483f4db906a84e0c618157cc2be (patch) | |
| tree | e15085246a024ed2bc28e27ad2680f6632cbd168 /src/types/UniqueGift.zig | |
| parent | Move bot configuration to SQL land (diff) | |
| download | ukkobot-9665b6315e028483f4db906a84e0c618157cc2be.tar.gz ukkobot-9665b6315e028483f4db906a84e0c618157cc2be.tar.xz ukkobot-9665b6315e028483f4db906a84e0c618157cc2be.zip | |
Add some new stuff to types
Diffstat (limited to 'src/types/UniqueGift.zig')
| -rw-r--r-- | src/types/UniqueGift.zig | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/types/UniqueGift.zig b/src/types/UniqueGift.zig new file mode 100644 index 0000000..0acc516 --- /dev/null +++ b/src/types/UniqueGift.zig | |||
| @@ -0,0 +1,12 @@ | |||
| 1 | const Chat = @import("Chat.zig"); | ||
| 2 | const UniqueGiftBackdrop = @import("UniqueGiftBackdrop.zig"); | ||
| 3 | const UniqueGiftModel = @import("UniqueGiftModel.zig"); | ||
| 4 | const UniqueGiftSymbol = @import("UniqueGiftSymbol.zig"); | ||
| 5 | |||
| 6 | base_name: []const u8, | ||
| 7 | name: []const u8, | ||
| 8 | number: u64, | ||
| 9 | model: UniqueGiftModel, | ||
| 10 | symbol: UniqueGiftSymbol, | ||
| 11 | backdrop: UniqueGiftBackdrop, | ||
| 12 | publisher_chat: ?Chat = null, | ||