Skip to content

Commit

Permalink
[FEATURE] #102 : 인식된 텍스트 속 알러지 요소 검출 Domain Model 구현
Browse files Browse the repository at this point in the history
  • Loading branch information
jeongjaino committed Nov 17, 2023
1 parent 747717b commit 8a61740
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
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,
)
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
)

0 comments on commit 8a61740

Please sign in to comment.