mirror of
https://github.com/Nereziel/cs2-WeaponPaints.git
synced 2026-02-19 02:51:50 +00:00
24 lines
657 B
C#
24 lines
657 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; }
|
|
|
|
public PlayerInfo() { }
|
|
|
|
public PlayerInfo(int index, int slot, int? userId, string? steamId, string? name, string? ipAddress)
|
|
{
|
|
Index = index;
|
|
Slot = slot;
|
|
UserId = userId;
|
|
SteamId = steamId;
|
|
Name = name;
|
|
IpAddress = ipAddress;
|
|
}
|
|
}
|
|
} |