ComplianceServer/oldcode/Core.BLL/EventBus/Events/MergeCustomerEvent.cs

25 lines
628 B
C#

using CRM.Core.Common.EventBus;
namespace CRM.Core.BLL.EventBus.Events
{
public class MergeCustomerEvent : IEvent
{
public MergeCustomerEvent()
{
}
public MergeCustomerEvent(string content, string clientid, string sign, string deptcode)
{
this.content = content;
this.clientid = clientid;
this.sign = sign;
this.deptcode = deptcode;
}
public string content { get; set; }
public string clientid { get; set; }
public string sign { get; set; }
public string deptcode { get; set; }
}
}