Files
CS2-SimpleAdmin/PlayerInfo.cs
Dawid Bepierszcz 2ab2f9c4dc 1.3.6a
- Minor changes
- Added `css_gravity` command
- Added `css_money` command
- Changed Utc time to LocalTime
- Updated translations (ChatGPT generated)
- Updated css version
2024-03-07 13:34:31 +01:00

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; }
}
}