2024-01-29 16:02:47 +00:00
|
|
|
|
namespace DiscordRewards
|
2024-01-22 09:27:07 +00:00
|
|
|
|
{
|
|
|
|
|
public class GiveRewardsCommand
|
|
|
|
|
{
|
|
|
|
|
public RewardUsersCommand[] Rewards { get; set; } = Array.Empty<RewardUsersCommand>();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class RewardUsersCommand
|
|
|
|
|
{
|
|
|
|
|
public ulong RewardId { get; set; }
|
|
|
|
|
public string[] UserAddresses { get; set; } = Array.Empty<string>();
|
|
|
|
|
}
|
|
|
|
|
}
|