mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-05-01 15:13:11 +00:00
21 lines
438 B
C#
21 lines
438 B
C#
|
|
namespace Utils
|
|||
|
|
{
|
|||
|
|
[Serializable]
|
|||
|
|
public class EthAccount
|
|||
|
|
{
|
|||
|
|
public EthAccount(EthAddress ethAddress, string privateKey)
|
|||
|
|
{
|
|||
|
|
EthAddress = ethAddress;
|
|||
|
|
PrivateKey = privateKey;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public EthAddress EthAddress { get; }
|
|||
|
|
public string PrivateKey { get; }
|
|||
|
|
|
|||
|
|
public override string ToString()
|
|||
|
|
{
|
|||
|
|
return EthAddress.ToString();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|