2026-04-01 15:32:36 +07:00
|
|
|
package ru.soune.nocopy.dto.notification;
|
|
|
|
|
|
|
|
|
|
import lombok.Builder;
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
|
|
@Data
|
|
|
|
|
@Builder
|
|
|
|
|
public class ActiveNotificationsResponse {
|
|
|
|
|
private List<NotificationDto> notifications;
|
|
|
|
|
private long unreadCount;
|
|
|
|
|
}
|