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

25 lines
619 B
C#

using CRM.Core.Common.EventBus;
namespace CRM.Core.BLL.EventBus.Events
{
public class JoinActiveEvent : IEvent
{
public JoinActiveEvent()
{
}
public JoinActiveEvent(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; }
}
}