GetUserNotificationsInput.cs 359 B

123456789101112131415
  1. using System;
  2. using Abp.Notifications;
  3. using IwbZero.AppServiceBase;
  4. namespace WeOnlineApp.BaseSystem.Notifications.Dto
  5. {
  6. public class GetUserNotificationsInput : IwbPagedRequestDto
  7. {
  8. public UserNotificationState? State { get; set; }
  9. public DateTime? StartDate { get; set; }
  10. public DateTime? EndDate { get; set; }
  11. }
  12. }