cs-codex-dist-tests/Framework/DiscordRewards/GiveRewardsCommand.cs

14 lines
345 B
C#
Raw Normal View History

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