blob: fefd68b05697dc8b61a04e259b5b4f68d8450f1b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
const Chat = @import("Chat.zig");
const User = @import("User.zig");
chat: Chat,
giveaway_message_id: u64,
winners_selection_date: u64,
winner_count: u64,
winners: []User,
additional_chat_count: ?u64 = null,
prize_star_count: ?u64 = null,
premium_subscription_month_count: ?u64 = null,
unclaimed_prize_count: ?u64 = null,
only_new_members: bool = false,
was_refunded: bool = false,
prize_description: ?[]const u8 = null,
|