cs-codex-dist-tests/GethPlugin/EthAddress.cs

23 lines
382 B
C#
Raw Normal View History

2023-09-19 09:51:59 +00:00
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; }
}
}