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

27 lines
740 B
C#

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