NoteEntity

data class NoteEntity(val id: Int = 0, val personNumber: Int, val date: String, val text: String, val positive: Boolean)

Entity representing a note.

Constructors

Link copied to clipboard
constructor(id: Int = 0, personNumber: Int, date: String, text: String, positive: Boolean)

Properties

Link copied to clipboard

The date of the note.

Link copied to clipboard
val id: Int

The unique identifier of the note.

Link copied to clipboard

The person number of the member.

Link copied to clipboard

Whether the note is positive or negative.

Link copied to clipboard

The text of the note.