Newer
Older
MonCalc / app / src / main / kotlin / jackall / moncalc / vo / Fruit.kt
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()