namespace DiscordRewards { public class GiveRewardsCommand { public RewardUsersCommand[] Rewards { get; set; } = Array.Empty(); } public class RewardUsersCommand { public ulong RewardId { get; set; } public string[] UserAddresses { get; set; } = Array.Empty(); } }