29 lines
768 B
C#
29 lines
768 B
C#
using CRM.Core.Common.EventBus;
|
|
|
|
namespace CRM.Core.BLL.EventBus.Events
|
|
{
|
|
public class DepositRejectEvent : IEvent
|
|
{
|
|
public DepositRejectEvent()
|
|
{
|
|
}
|
|
|
|
public DepositRejectEvent(int id, int? status, string rejectRemark, int userId, string userName, int channel)
|
|
{
|
|
Id = id;
|
|
Status = status;
|
|
RejectRemark = rejectRemark;
|
|
UserId = userId;
|
|
UserName = userName;
|
|
Channel = channel;
|
|
}
|
|
|
|
public int Id { get; set; }
|
|
public int? Status { get; set; }
|
|
public string RejectRemark { get; set; }
|
|
public int UserId { get; set; }
|
|
public string UserName { get; set; }
|
|
public int Channel { get; set; }
|
|
}
|
|
}
|