GetNotificationsOutput.cs 425 B

123456789101112131415
  1. using Abp.Application.Services.Dto;
  2. using Abp.Notifications;
  3. namespace VberZero.AppService.Notifications.Dto;
  4. public class GetNotificationsOutput : PagedResultDto<UserNotification>
  5. {
  6. public int UnreadCount { get; set; }
  7. public GetNotificationsOutput(int totalCount, int unreadCount, List<UserNotification> notifications)
  8. : base(totalCount, notifications)
  9. {
  10. UnreadCount = unreadCount;
  11. }
  12. }