namespace Nethereum.Hex.HexConvertors { public interface IHexConvertor { string ConvertToHex(T value); T ConvertFromHex(string value); } }