Files
cs2-WeaponPaints/PlayerInfo.cs
Dawid Bepierszcz e75d48bd0d 1.9a
- Removed GlobalShare
- More stability
2024-02-22 21:07:52 +01:00

12 lines
276 B
C#

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