RAGECOOP-V/Server/Entities/EntitiesPlayer.cs
2021-08-14 21:49:23 +02:00

10 lines
217 B
C#

namespace CoopServer.Entities
{
public class EntitiesPlayer
{
public string SocialClubName { get; set; }
public string Username { get; set; }
public EntitiesPed Ped = new();
}
}