-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f95caa6
commit 0cce464
Showing
2 changed files
with
18 additions
and
23 deletions.
There are no files selected for viewing
5 changes: 4 additions & 1 deletion
5
src/main/java/solution/gdsc/PathPal/domain/inference/domain/Inference.java
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,8 @@ | ||
package solution.gdsc.PathPal.domain.inference.domain; | ||
|
||
public record Inference(String name, double confidence, double left_x, double right_x, boolean alert) { | ||
public record Inference(String name, double confidence, | ||
double left_x, double right_x, | ||
double up_y, double down_y, | ||
boolean alert) { | ||
} | ||
|
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