Files
cs2-WeaponPaints/PlayerInfo.cs
2023-12-04 21:00:24 +01:00

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; }
}
}