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