Skip to content

Commit

Permalink
[SELC-6181] fix: compilation error
Browse files Browse the repository at this point in the history
  • Loading branch information
empassaro committed Dec 19, 2024
1 parent 162c11a commit 444b598
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,11 @@ public class ManagerVerification {
private String companyName;
private boolean verified;

public ManagerVerification(String origin, String companyName) {
this.origin = origin;
this.companyName = companyName;
}

public ManagerVerification(boolean verified) {
this.verified = verified;
}
Expand Down

0 comments on commit 444b598

Please sign in to comment.