freeso/TSOClient/FSO.Server.Database/DA/Users/DbAuthAttempt.cs
riperiperi b57ebbd141 Cleanup: Remove most unused usings and MPL per-file licenses
MPL per-file was used in older project files, but should apply to the whole project, so having it there was redundant.
2023-11-25 03:45:29 +00:00

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; }
}
}