mirror of
https://github.com/daffyyyy/CS2-SimpleAdmin.git
synced 2026-09-27 20:17:04 +02:00
9 lines
226 B
C#
9 lines
226 B
C#
namespace CS2_SimpleAdmin.Models;
|
|
|
|
public record IpHistoryRow
|
|
{
|
|
public long Steamid { get; init; }
|
|
public string? Name { get; init; }
|
|
public uint Address { get; init; }
|
|
public DateTime Used_at { get; init; }
|
|
}
|