dbLike

data class dbLike(val localId: Long, val serverId: String? = null, val name: String, val category: String)

Represents a "like" in the database.

Constructors

Link copied to clipboard
constructor(localId: Long, serverId: String? = null, name: String, category: String)

Properties

Link copied to clipboard

The category of the like.

Link copied to clipboard

The unique ID for this like in the local database. This is the primary key.

Link copied to clipboard

The name of the like.

Link copied to clipboard
val serverId: String? = null

The unique ID for this like on the server. This is indexed and must be unique.