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