This commit is contained in:
sathwikcs
2024-10-16 17:50:04 +05:30
parent 0595e791a1
commit bbbbb460ad
2 changed files with 21 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
package `in`.sminnovations.attendanceapp.data.dataStore
data class Employee(
val androidID: String = "",
val dateOfJoining: String = "",
val dateOfLeaving: String = "",
val designation: String = "Android Developer",
val employeeStatus: Boolean = true,
val id: String = "",
val name: String = "",
val password: String = "",
val photo: String = "",
val dateOfBirth: String = ""
)

View File

@@ -0,0 +1,7 @@
package `in`.sminnovations.attendanceapp.screens.settings.data
class EmployeeDataSettings (
val name : String = "",
val id : String = "",
val designation : String = ""
)