namespace WIDESEAWCS_S7Simulator.Core.Entities
{
///
/// S7客户端连接信息
///
public class S7ClientConnection
{
///
/// 客户端唯一标识
///
public string ClientId { get; set; } = string.Empty;
///
/// 客户端IP地址和端口
///
public string RemoteEndPoint { get; set; } = string.Empty;
///
/// 连接时间
///
public DateTime ConnectedTime { get; set; }
///
/// 最后活动时间
///
public DateTime LastActivityTime { get; set; }
}
}