10 lines
210 B
C#
10 lines
210 B
C#
namespace CoopServer.Entities
|
|
{
|
|
class EntitiesPlayer
|
|
{
|
|
public string SocialClubName { get; set; }
|
|
public string Username { get; set; }
|
|
public EntitiesPed Ped = new();
|
|
}
|
|
}
|