2
0
mirror of synced 2025-01-16 19:44:17 +00:00
2023-09-20 10:51:47 +02:00

18 lines
289 B
C#

namespace GethPlugin
{
public interface IHasEthAddress
{
EthAddress EthAddress { get; }
}
public class EthAddress
{
public EthAddress(string address)
{
Address = address;
}
public string Address { get; }
}
}