-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FEATURE] #102 : 인식된 텍스트 속 알러지 요소 검출 Domain Model 구현
- Loading branch information
1 parent
747717b
commit 8a61740
Showing
2 changed files
with
9 additions
and
0 deletions.
There are no files selected for viewing
8 changes: 8 additions & 0 deletions
8
client/domain/src/main/java/com/healthc/domain/model/detection/AllergyTextDetection.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
package com.healthc.domain.model.detection | ||
|
||
import com.healthc.domain.model.auth.Allergy | ||
|
||
data class AllergyTextDetection ( | ||
val allergies: List<Allergy>, | ||
val recognizedText: String, | ||
) |
1 change: 1 addition & 0 deletions
1
client/domain/src/main/java/com/healthc/domain/model/detection/TextDetection.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,6 @@ | ||
package com.healthc.domain.model.detection | ||
|
||
// 오직 OCR, 문자 인식만을 위한 도메인 모델 | ||
data class TextDetection( | ||
val recognizedText: String | ||
) |