This commit is contained in:
playaopindo-dev 2026-06-22 19:41:04 +02:00 • committed by GitHub
commit e1f966e1de
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,3 +1,14 @@
namespace CS2_SimpleAdmin.Models; namespace CS2_SimpleAdmin.Models;
public record IpHistoryRow(ulong Steamid, string? Name, uint Address, DateTime Used_at); public sealed class IpHistoryRow
{
public long steamid { get; set; }
public string? name { get; set; }
public long address { get; set; }
public DateTime used_at { get; set; }
public ulong Steamid => Convert.ToUInt64(steamid);
public string? Name => name;
public uint Address => unchecked((uint)address);
public DateTime Used_at => used_at;
}