DeleteAllUserNotificationsInput.cs 271 B

123456789101112
  1. using Abp.Notifications;
  2. namespace VberZero.AppService.Notifications.Dto;
  3. public class DeleteAllUserNotificationsInput
  4. {
  5. public UserNotificationState? State { get; set; }
  6. public DateTime? StartDate { get; set; }
  7. public DateTime? EndDate { get; set; }
  8. }