DeleteAllUserNotificationsInput.cs 315 B

1234567891011121314
  1. using System;
  2. using Abp.Notifications;
  3. namespace WeOnlineApp.BaseSystem.Notifications.Dto
  4. {
  5. public class DeleteAllUserNotificationsInput
  6. {
  7. public UserNotificationState? State { get; set; }
  8. public DateTime? StartDate { get; set; }
  9. public DateTime? EndDate { get; set; }
  10. }
  11. }