GetUserNotificationsInput.cs 322 B

1234567891011121314
  1. using Abp.Notifications;
  2. using VberZero.AppService.Base.Dto;
  3. namespace VberZero.AppService.Notifications.Dto;
  4. public class GetUserNotificationsInput : VzPagedRequestDto
  5. {
  6. public UserNotificationState? State { get; set; }
  7. public DateTime? StartDate { get; set; }
  8. public DateTime? EndDate { get; set; }
  9. }