mirror of
https://github.com/ppy/osu.git
synced 2026-05-17 02:22:35 +08:00
24 lines
427 B
C#
24 lines
427 B
C#
using System;
|
|
|
|
namespace Symcol.Core.Networking
|
|
{
|
|
/// <summary>
|
|
/// Just a client signature basically
|
|
/// </summary>
|
|
[Serializable]
|
|
public class ClientInfo
|
|
{
|
|
public string IP;
|
|
|
|
public int Port;
|
|
|
|
public int Ping;
|
|
|
|
public int ConncetionTryCount;
|
|
|
|
public double LastConnectionTime;
|
|
|
|
public double StartedTestConnectionTime;
|
|
}
|
|
}
|