2021-07-07 13:36:25 +02:00
|
|
|
|
namespace CoopServer.Entities
|
|
|
|
|
{
|
2021-08-14 21:49:23 +02:00
|
|
|
|
public class EntitiesPlayer
|
2021-07-07 13:36:25 +02:00
|
|
|
|
{
|
|
|
|
|
public string SocialClubName { get; set; }
|
|
|
|
|
public string Username { get; set; }
|
2021-08-16 12:31:49 +02:00
|
|
|
|
public float Latency { get; set; }
|
2021-07-07 13:36:25 +02:00
|
|
|
|
public EntitiesPed Ped = new();
|
|
|
|
|
}
|
|
|
|
|
}
|