mirror of
https://github.com/daffyyyy/CS2-SimpleAdmin.git
synced 2026-02-17 18:39:07 +00:00
11 lines
250 B
C#
11 lines
250 B
C#
namespace CS2_SimpleAdmin
|
|
{
|
|
public class PlayerInfo
|
|
{
|
|
public int UserId { get; init; }
|
|
public int Slot { get; init; }
|
|
public string? SteamId { get; init; }
|
|
public string? Name { get; init; }
|
|
public string? IpAddress { get; init; }
|
|
}
|
|
} |