package jackall.moncalc.vo import io.realm.RealmObject import io.realm.annotations.PrimaryKey /** * Created by matsumoto_k on 2017/11/02. */ open class Fruit( @PrimaryKey open var id: Int = -1, open var name: String = "", open var rank: Int = -1 ) : RealmObject()