mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-19 08:21:22 +00:00
11 lines
258 B
C#
11 lines
258 B
C#
|
namespace FSO.Server.Database.DA.Bans
|
|||
|
{
|
|||
|
public class DbBan
|
|||
|
{
|
|||
|
public uint user_id { get; set; }
|
|||
|
public string ip_address { get; set; }
|
|||
|
public string ban_reason { get; set; }
|
|||
|
public int end_date { get; set; }
|
|||
|
}
|
|||
|
}
|