Skip to content

Commit

Permalink
Added additional info for notification bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Manishch22 committed Aug 10, 2023
1 parent 2e38f20 commit cad3e91
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,7 @@ public class PacketWorkflowInstanceRequestDto {
private String source;

private String additionalInfoReqId;

private RegistrationAdditionalInfoDTO additionalInfo;

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
package io.mosip.kernel.masterdata.dto;

import java.io.Serializable;

public class RegistrationAdditionalInfoDTO implements Serializable {

/**
*
*/
private static final long serialVersionUID = 5493632810187324004L;

private String name;
private String phone;
private String email;

public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getPhone() {
return phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
public String getEmail() {
return email;
}
public void setEmail(String email) {
this.email = email;
}

}

0 comments on commit cad3e91

Please sign in to comment.