Advertisement
Guest User

Untitled

a guest
Aug 25th, 2019
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. @RealmClass
  2. open class Todo(
  3. @PrimaryKey
  4. var id: Int? = null,
  5. var userId: Int? = null,
  6. var title: String? = null,
  7. var completed: Boolean? = null
  8. ): RealmModel
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement