25 lines
567 B
C#
25 lines
567 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Crm.Core.Domain.Dto.CRM
|
|
{
|
|
public class NotificationSearchPageDto : SearchPageBase
|
|
{
|
|
public int Eid { get; set; }
|
|
|
|
public int? Read { get; set; }
|
|
|
|
public DateTime? TimeFrom { get; set; }
|
|
|
|
public DateTime? TimeTo { get; set; }
|
|
|
|
public NotificationType? NotificationType { get; set; }
|
|
|
|
public int? ComplaintType { get; set; }
|
|
public int? ComplaintReason { get; set; }
|
|
}
|
|
}
|