Newer
Older
OverlayMultiCounter / app / src / main / kotlin / jackall / overlaymulticounter / vo / Counter.kt
MatsumotoKeiju on 8 Nov 2017 374 bytes [add] Primarykey id to Counter
package jackall.overlaymulticounter.vo

import io.realm.RealmObject
import io.realm.annotations.PrimaryKey
import java.util.*

/**
 * Created by matsumoto_k on 2017/11/08.
 */
open class Counter(
        @PrimaryKey
        open var id: Int = 0,
        open var title: String = "",
        open var count: Int = 0,
        open var createAt: Date = Date()
) : RealmObject()