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

25 lines
613 B
C#

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