cs-codex-dist-tests/Tools/BiblioTech/Rewards/GiveRewardsCommand.cs

19 lines
468 B
C#
Raw Normal View History

2024-01-22 09:27:07 +00:00
using Newtonsoft.Json;
namespace BiblioTech.Rewards
{
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>();
[JsonIgnore]
public UserData[] Users { get; set; } = Array.Empty<UserData>();
}
}