mirror of
https://github.com/daffyyyy/CS2-SimpleAdmin.git
synced 2026-09-27 20:17:04 +02:00
Bump version and adjust SteamID type handling
This commit is contained in:
parent
a588267165
commit
cf284bd121
4 changed files with 12 additions and 6 deletions
|
|
@ -1,3 +1,9 @@
|
|||
namespace CS2_SimpleAdmin.Models;
|
||||
|
||||
public record IpHistoryRow(ulong Steamid, string? Name, uint Address, DateTime Used_at);
|
||||
public record IpHistoryRow
|
||||
{
|
||||
public long Steamid { get; init; }
|
||||
public string? Name { get; init; }
|
||||
public uint Address { get; init; }
|
||||
public DateTime Used_at { get; init; }
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue