Skip to content

Instantly share code, notes, and snippets.

@garg-lucifer
Created September 23, 2022 18:09
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 garg-lucifer/a6204764c9b7ad21d7aa2ad553113a70 to your computer and use it in GitHub Desktop.
Save garg-lucifer/a6204764c9b7ad21d7aa2ad553113a70 to your computer and use it in GitHub Desktop.
@Entity(tableName = "taskInfo")
data class TaskInfo(
@PrimaryKey(autoGenerate = false)
var id : Int,
var description : String,
var date : Date,
var priority : Int,
var status : Boolean,
var category: String
) : Serializable
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment