26 lines
753 B
C#
26 lines
753 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 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; }
|
|
}
|
|
} |