2
0
mirror of synced 2025-01-13 01:54:07 +00:00
2024-01-31 11:30:29 -05:00

14 lines
345 B
C#

namespace DiscordRewards
{
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>();
}
}