using Abp.Application.Services.Dto; using Abp.Notifications; namespace VberZero.AppService.Notifications.Dto; public class GetNotificationsOutput : PagedResultDto { public int UnreadCount { get; set; } public GetNotificationsOutput(int totalCount, int unreadCount, List notifications) : base(totalCount, notifications) { UnreadCount = unreadCount; } }