Updated notification code.

This commit is contained in:
piyushkag
2024-12-23 13:15:56 +05:30
parent 288fde0a88
commit d7e2e35746
2 changed files with 20 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
package net.gepafin.tendermanagement.model.response;
import lombok.Data;
import java.time.LocalDateTime;
@Data
public class NotificationResponse {
private Long id;
private Long userId;
private String message;
private String notificationType;
private String status;
private LocalDateTime createdDate;
private LocalDateTime updatedDate;
private String redirectUrl;
private Long companyId;
}