19 lines
452 B
Java
19 lines
452 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;
|
||
|
|
}
|