SkillEntity

data class SkillEntity(skillId: Int, parentId: Int, skillName: String)

Skill model for the local database.

Constructors

Link copied to clipboard
fun SkillEntity(skillId: Int = 0, parentId: Int, skillName: String)

Functions

Link copied to clipboard
operator fun component1(): Int
Link copied to clipboard
operator fun component2(): Int
Link copied to clipboard
operator fun component3(): String
Link copied to clipboard
fun copy(skillId: Int = 0, parentId: Int, skillName: String): SkillEntity

Properties

Link copied to clipboard
val parentId: Int

id of the resume that this model belong to.

Link copied to clipboard
val skillId: Int = 0

id of the skill and primary key.

Link copied to clipboard
val skillName: String

string representation of the skill name.