mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-21 22:53:08 +00:00
19 lines
468 B
C#
19 lines
468 B
C#
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>();
|
|
}
|
|
}
|