Update for cssharp 101

This commit is contained in:
daffyyyy
2023-12-04 21:00:24 +01:00
parent 1e5c2a439f
commit 5e6286b667
6 changed files with 119 additions and 57 deletions

11
PlayerInfo.cs Normal file
View File

@@ -0,0 +1,11 @@
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; }
}
}