mirror of
https://github.com/riperiperi/FreeSO
synced 2026-08-13 20:26:13 -04:00
MPL per-file was used in older project files, but should apply to the whole project, so having it there was redundant.
13 lines
387 B
C#
13 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; }
|
|
}
|
|
}
|