mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-04 22:43:07 +00:00
25 lines
507 B
C#
25 lines
507 B
C#
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;
|
|
}
|
|
}
|
|
}
|