CoolFace
Apppublic

sakthivikram/geo-location

sourceHugging Faceupdated 5mo agoView on Hugging Face
0likes
NotificationResponse.java23 linesDownload Raw Back to dto
1package com.georeport.dto;2 3import lombok.*;4import java.time.LocalDateTime;5 6/**7 * DTO for notification response.8 */9@Data10@NoArgsConstructor11@AllArgsConstructor12@Builder13public class NotificationResponse {14 15    private Long id;16    private Long issueId;17    private String title;18    private String message;19    private String type;20    private Boolean isRead;21    private LocalDateTime createdAt;22}23