mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-24 08:03:11 +00:00
14 lines
306 B
C#
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>();
|
|
}
|
|
}
|