Bump version and adjust SteamID type handling

This commit is contained in:
Dawid Bepierszcz 2026-06-28 00:49:54 +02:00
parent a588267165
commit cf284bd121
4 changed files with 12 additions and 6 deletions

View file

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