31 lines
441 B
Java
31 lines
441 B
Java
package net.gepafin.tendermanagement.model.response;
|
|
|
|
import lombok.Data;
|
|
|
|
import java.util.List;
|
|
|
|
@Data
|
|
public class PecEmailLogResponse {
|
|
|
|
private Long id;
|
|
|
|
private Long userActionId;
|
|
|
|
private Long userId;
|
|
|
|
private Long applicationId;
|
|
|
|
private String callName;
|
|
|
|
private EmailLogResponse emailLogs;
|
|
|
|
private String type;
|
|
|
|
private String subject;
|
|
|
|
private String htmlContent;
|
|
|
|
private Long callId;
|
|
|
|
}
|