2
0
mirror of synced 2025-01-13 18:14:14 +00:00

14 lines
345 B
C#
Raw Normal View History

namespace DiscordRewards
2024-01-22 10:27:07 +01: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>();
}
}