Package com.htueko.resumeapp.data.local.entity

Types

Link copied to clipboard
data class EducationEntity(educationId: Int, parentId: Int, schoolClass: String, passingYear: Int, percentageOrCgpa: Double)

Education model for the local database.

Link copied to clipboard
data class ProjectEntity(projectId: Int, parentId: Int, projectName: String, teamSize: Int, projectSummary: String, role: String, technology: String)

Project model for local database.

Link copied to clipboard
data class ResumeEntity(resumeId: Int, name: String, avatarUrl: String, mobileNumber: String, emailAddress: String, careerObjective: String, totalYearsOfExperience: Int, residenceAddress: String)

Resume model for local database.

Link copied to clipboard
data class SkillEntity(skillId: Int, parentId: Int, skillName: String)

Skill model for the local database.

Link copied to clipboard
data class WorkEntity(workId: Int, parentId: Int, companyName: String, duration: Int)

Work model for local database.