- Minor changes
This commit is contained in:
Dawid Bepierszcz
2024-04-28 02:14:50 +02:00
parent 806b5038ca
commit aefa6c6355
28 changed files with 1268 additions and 1351 deletions

View File

@@ -3,10 +3,10 @@
public class PlayerInfo
{
public int? Index { get; set; }
public int UserId { get; set; }
public int Slot { get; set; }
public string? SteamId { get; set; }
public string? Name { get; set; }
public string? IpAddress { get; set; }
public int UserId { get; init; }
public int Slot { get; init; }
public string? SteamId { get; init; }
public string? Name { get; init; }
public string? IpAddress { get; init; }
}
}