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

10 lines
216 B
Java
Raw Normal View History

2016-11-21 17:50:30 +00:00
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();
}