diff --git a/app/src/main/kotlin/jackall/moncalc/vo/Fruit.kt b/app/src/main/kotlin/jackall/moncalc/vo/Fruit.kt new file mode 100644 index 0000000..18ae1e7 --- /dev/null +++ b/app/src/main/kotlin/jackall/moncalc/vo/Fruit.kt @@ -0,0 +1,13 @@ +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() \ No newline at end of file