mirror of
https://github.com/Nereziel/cs2-WeaponPaints.git
synced 2026-02-17 18:39:07 +00:00
12 lines
245 B
C#
12 lines
245 B
C#
namespace WeaponPaints
|
|
{
|
|
public class PlayerInfo
|
|
{
|
|
public int Index { get; set; }
|
|
public int? UserId { get; set; }
|
|
public string? SteamId { get; set; }
|
|
public string? Name { get; set; }
|
|
public string? IpAddress { get; set; }
|
|
}
|
|
}
|