diff options
Diffstat (limited to 'src/types/Giveaway.zig')
| -rw-r--r-- | src/types/Giveaway.zig | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/types/Giveaway.zig b/src/types/Giveaway.zig new file mode 100644 index 0000000..d1cfa7e --- /dev/null +++ b/src/types/Giveaway.zig | |||
| @@ -0,0 +1,10 @@ | |||
| 1 | const Chat = @import("Chat.zig"); | ||
| 2 | |||
| 3 | chats: []Chat, | ||
| 4 | winners_selection_date: u64, | ||
| 5 | winner_count: u64, | ||
| 6 | only_new_members: bool = false, | ||
| 7 | has_public_winners: bool = false, | ||
| 8 | prize_description: ?[]const u8 = null, | ||
| 9 | country_codes: ?[]const u8 = null, | ||
| 10 | premium_subscription_month_count: ?u64 = null, | ||