using XFEExtension.NetCore.CyberComm;
namespace XFEExtension.NetCore.XFEConsole;
///
/// XFE控制台客户端信息
///
/// 客户端名称
/// 客户端唯一标识符
/// 客户端连接时密码
/// 事件参数
public class XFEConsoleClientInfo(string clientName, string clientUuid, string password, CyberCommServerEventArgs eventArgs)
{
///
/// 客户端名称
///
public string ClientName { get; set; } = clientName;
///
/// 客户端唯一标识符
///
public string ClientUuid { get; set; } = clientUuid;
///
/// 客户端密码
///
public string Password { get; set; } = password;
///
/// 事件参数
///
public CyberCommServerEventArgs EventArgs { get; set; } = eventArgs;
}