Files
cs2-WeaponPaints/PlayerInfo.cs
Dawid Bepierszcz 29461e9de2 2.4e
- Minor changes
2024-04-28 02:17:24 +02:00

12 lines
278 B
C#

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