cs-codex-dist-tests/ProjectPlugins/GethPlugin/GethAccount.cs

25 lines
507 B
C#
Raw Normal View History

2023-09-15 13:52:02 +00:00
namespace GethPlugin
{
public class GethAccount
{
public GethAccount(string account, string privateKey)
{
Account = account;
PrivateKey = privateKey;
}
public string Account { get; }
public string PrivateKey { get; }
}
public class AllGethAccounts
{
public GethAccount[] Accounts { get; }
public AllGethAccounts(GethAccount[] accounts)
{
Accounts = accounts;
}
}
}