namespace Nethereum.RLP { /// /// Wrapper class for decoded elements from an RLP encoded byte array. /// public interface IRLPElement { byte[] RLPData { get; } } }