mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-01-09 08:53:13 +00:00
23 lines
382 B
C#
23 lines
382 B
C#
|
|
namespace GethPlugin
|
|||
|
|
{
|
|||
|
|
public interface IEthAddress
|
|||
|
|
{
|
|||
|
|
string Address { get; }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public interface IHasEthAddress
|
|||
|
|
{
|
|||
|
|
IEthAddress EthAddress { get; }
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public class EthAddress : IEthAddress
|
|||
|
|
{
|
|||
|
|
public EthAddress(string address)
|
|||
|
|
{
|
|||
|
|
Address = address;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
public string Address { get; }
|
|||
|
|
}
|
|||
|
|
}
|