using Abp.Notifications; using VberZero.AppService.Base.Dto; namespace VberZero.AppService.Notifications.Dto; public class GetUserNotificationsInput : VzPagedRequestDto { public UserNotificationState? State { get; set; } public DateTime? StartDate { get; set; } public DateTime? EndDate { get; set; } }