Skip to content

Instantly share code, notes, and snippets.

@drawers
Created January 21, 2021 21:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save drawers/483ebfd4e28bcad83099bbf6d2d9b142 to your computer and use it in GitHub Desktop.
Save drawers/483ebfd4e28bcad83099bbf6d2d9b142 to your computer and use it in GitHub Desktop.
Task.kt
// Realm models must be open
open class Task constructor(
var title: String = "",
var description: String,
var isCompleted: Boolean,
@PrimaryKey var entryId: String
): RealmObject()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment