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