using System.Net.Sockets;
namespace GServer.Server;
///
/// Holds information related to a connected client.
///
///
public class ClientState(
TcpClient client)
{
public TcpClient Client { get; } = client;
///
/// The ID of the associated player.
///
public Guid PlayerId { get; set; }
///
/// The username of the associated player.
///
public string Username { get; set; }
///
/// The timestamp (UTC) of the last received packet from the client.
///
public DateTime LastHeartbeat { get; set; }
}