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