mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-06 07:23:07 +00:00
18 lines
354 B
C#
18 lines
354 B
C#
using DiscordRewards;
|
|
using Utils;
|
|
|
|
namespace TestNetRewarder
|
|
{
|
|
public class RequestBuilder
|
|
{
|
|
public EventsAndErrors Build(ChainEventMessage[] lines, string[] errors)
|
|
{
|
|
return new EventsAndErrors
|
|
{
|
|
EventsOverview = lines,
|
|
Errors = errors
|
|
};
|
|
}
|
|
}
|
|
}
|