mirror of
https://github.com/daffyyyy/CS2-SimpleAdmin.git
synced 2026-02-17 18:39:07 +00:00
- Minor changes - Added `css_gravity` command - Added `css_money` command - Changed Utc time to LocalTime - Updated translations (ChatGPT generated) - Updated css version
12 lines
279 B
C#
12 lines
279 B
C#
namespace CS2_SimpleAdmin
|
|
{
|
|
public class PlayerInfo
|
|
{
|
|
public int? Index { get; set; }
|
|
public int UserId { get; set; }
|
|
public int Slot { get; set; }
|
|
public string? SteamId { get; set; }
|
|
public string? Name { get; set; }
|
|
public string? IpAddress { get; set; }
|
|
}
|
|
} |