mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-23 18:02:23 +00:00
14 lines
387 B
C#
14 lines
387 B
C#
|
namespace FSO.Server.Database.DA.Users
|
|||
|
{
|
|||
|
public class DbAuthAttempt
|
|||
|
{
|
|||
|
public uint attempt_id { get; set; }
|
|||
|
public string ip { get; set; }
|
|||
|
public uint user_id { get; set; }
|
|||
|
public uint expire_time { get; set; }
|
|||
|
public int count { get; set; }
|
|||
|
public bool active { get; set; }
|
|||
|
public bool invalidated { get; set; }
|
|||
|
}
|
|||
|
}
|