Added emailTemplate field in amendment response

This commit is contained in:
nisha
2024-12-30 13:27:51 +05:30
parent 549478b610
commit e56b8aa9be
4 changed files with 55 additions and 20 deletions

View File

@@ -0,0 +1,10 @@
package net.gepafin.tendermanagement.model.response;
import lombok.Data;
@Data
public class EmailContentResponse {
private final String subject;
private final String body;
private final SystemEmailTemplateResponse systemEmailTemplateResponse;
}