updated with new entries

This commit is contained in:
vsuryakumar
2023-01-24 19:52:18 +05:30
parent 7d09283af6
commit a7b9ed8cfa
2 changed files with 7 additions and 5 deletions

View File

@@ -0,0 +1,7 @@
package com.example.refactoredapp.data.model
data class PatientDetails(
val name: String,
val age: Int,
val gender: String
)

View File

@@ -1,5 +0,0 @@
package com.example.refactoredapp.data.model
data class SampleDetails(
val sampleName: String
)