graphenej/src/main/java/com/luminiasoft/bitshares/interfaces/ByteSerializable.java

10 lines
216 B
Java

package com.luminiasoft.bitshares.interfaces;
/**
* Interface implemented by all entities for which makes sense to have a byte-array representation.
*/
public interface ByteSerializable {
byte[] toBytes();
}