29 lines
754 B
C#
29 lines
754 B
C#
using CRM.Core.Common.EventBus;
|
|
|
|
namespace CRM.Core.BLL.EventBus.Events
|
|
{
|
|
public class PayRejectEvent : IEvent
|
|
{
|
|
public PayRejectEvent()
|
|
{
|
|
}
|
|
|
|
public PayRejectEvent(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; }
|
|
}
|
|
}
|