Package com.htueko.resumeapp.domain.model

Types

Link copied to clipboard
data class DetailResume(resume: Resume, educations: List<Education>, projects: List<Project>, skills: List<Skill>, works: List<Work>) : Parcelable

detail model for displaying everything related to Resume, Education, Project, Skill and Work

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

domain model for education properties

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

domain model for project properties

Link copied to clipboard
data class Resume(resumeId: Int, name: String, avatarUrl: String, mobileNumber: String, emailAddress: String, careerObjective: String, totalYearsOfExperience: Int, address: String) : Parcelable

domain model for resume properties

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

domain model for skill properties

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

domain model for work properties