graphenej/src/main/java/de/bitsharesmunich/graphenej/interfaces/ByteSerializable.java

10 lines
219 B
Java

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