Files
cs2-WeaponPaints/PlayerInfo.cs
Nereziel 56537971ad test update
min CSShrap 155
globalshare not working
db remake
add option to not use ontick fix to cs2 weapon models
!skins will save only changed weapon
2024-02-03 05:34:10 +01:00

12 lines
247 B
C#

namespace WeaponPaints
{
public class PlayerInfo
{
public int Index { get; set; }
public int? UserId { get; set; }
public ulong? SteamId { get; set; }
public string? Name { get; set; }
public string? IpAddress { get; set; }
}
}