2
0
mirror of synced 2025-02-02 19:53:29 +00:00

23 lines
382 B
C#
Raw Normal View History

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