24 lines
639 B
C#
24 lines
639 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Zxd.Domain.EventBuses.Events
|
|
{
|
|
public class 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; }
|
|
}
|
|
} |