20 lines
480 B
Java
20 lines
480 B
Java
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;
|
|
private Object context;
|
|
}
|