mirror of
https://github.com/Nereziel/cs2-WeaponPaints.git
synced 2026-02-18 10:43:22 +00:00
12 lines
283 B
C#
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; }
|
|
}
|
|
} |