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