2026-04-01 15:32:36 +07:00
|
|
|
package ru.soune.nocopy.dto.notification;
|
|
|
|
|
|
|
|
|
|
import lombok.Builder;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
import ru.soune.nocopy.entity.notification.NotificationStatus;
|
|
|
|
|
import ru.soune.nocopy.entity.notification.NotificationType;
|
|
|
|
|
|
|
|
|
|
import java.time.LocalDateTime;
|
|
|
|
|
|
|
|
|
|
@Data
|
|
|
|
|
@Builder
|
|
|
|
|
public class NotificationDto {
|
|
|
|
|
private Long id;
|
|
|
|
|
private String message;
|
|
|
|
|
private NotificationType type;
|
|
|
|
|
private NotificationStatus status;
|
|
|
|
|
private LocalDateTime createdAt;
|
2026-05-13 14:27:01 +07:00
|
|
|
private Object context;
|
2026-04-01 15:32:36 +07:00
|
|
|
}
|