2
0
mirror of synced 2025-03-02 17:00:33 +00:00
2023-12-20 15:56:03 +01:00

14 lines
306 B
C#

namespace BiblioTech.Rewards
{
public class GiveRewards
{
public Reward[] Rewards { get; set; } = Array.Empty<Reward>();
}
public class Reward
{
public ulong RewardId { get; set; }
public string[] UserAddresses { get; set; } = Array.Empty<string>();
}
}