mirror of
https://github.com/daffyyyy/CS2-SimpleAdmin.git
synced 2026-09-27 20:17:04 +02:00
Merge 065eef235d into a588267165
This commit is contained in:
commit
e1f966e1de
1 changed files with 12 additions and 1 deletions
|
|
@ -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;
|
||||||
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue