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