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