Files
cs2-WeaponPaints/PlayerInfo.cs
Nereziel 322b1b425b part one
2024-05-26 19:28:36 +02:00

12 lines
283 B
C#

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