Skip to content

Commit a41b36d

Browse files
authored
Merge pull request #1 from jasompi/main
Fix public access for EmotionAnalysis properties
2 parents a6abeab + d74a3f6 commit a41b36d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Sources/Mentalist/Model/EmotionAnalysis.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import Foundation
99

1010
public struct EmotionAnalysis {
11-
var region: CGRect
12-
var emotion: [Emotion: Double]
13-
var dominantEmotion: Emotion
11+
public var region: CGRect
12+
public var emotion: [Emotion: Double]
13+
public var dominantEmotion: Emotion
1414
}

0 commit comments

Comments
 (0)