cs-codex-dist-tests/Framework/DiscordRewards/GiveRewardsCommand.cs

27 lines
778 B
C#
Raw Permalink Normal View History

namespace DiscordRewards
2024-01-22 09:27:07 +00:00
{
public class GiveRewardsCommand
{
public RewardUsersCommand[] Rewards { get; set; } = Array.Empty<RewardUsersCommand>();
2024-10-14 07:43:05 +00:00
public ChainEventMessage[] EventsOverview { get; set; } = Array.Empty<ChainEventMessage>();
public string[] Errors { get; set; } = Array.Empty<string>();
public bool HasAny()
{
return Rewards.Any() || EventsOverview.Any();
}
2024-01-22 09:27:07 +00:00
}
public class RewardUsersCommand
{
public ulong RewardId { get; set; }
public string[] UserAddresses { get; set; } = Array.Empty<string>();
}
2024-10-14 07:43:05 +00:00
public class ChainEventMessage
{
public ulong BlockNumber { get; set; }
public string Message { get; set; } = string.Empty;
}
2024-01-22 09:27:07 +00:00
}