using System; using Abp.Notifications; using IwbZero.AppServiceBase; namespace WePlatform.BaseSystem.Notifications.Dto { public class GetUserNotificationsInput : IwbPagedRequestDto { public UserNotificationState? State { get; set; } public DateTime? StartDate { get; set; } public DateTime? EndDate { get; set; } } }