using Newtonsoft.Json; namespace BiblioTech.Rewards { public class GiveRewardsCommand { public RewardUsersCommand[] Rewards { get; set; } = Array.Empty(); } public class RewardUsersCommand { public ulong RewardId { get; set; } public string[] UserAddresses { get; set; } = Array.Empty(); [JsonIgnore] public UserData[] Users { get; set; } = Array.Empty(); } }