mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-05-14 13:52:28 +00:00
19 lines
No EOL
501 B
C#
19 lines
No EOL
501 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace LBPUnion.ProjectLighthouse.PlayerData;
|
|
|
|
public class AuthenticationAttempt
|
|
{
|
|
[Key]
|
|
public int AuthenticationAttemptId { get; set; }
|
|
|
|
public long Timestamp { get; set; }
|
|
public Platform Platform { get; set; }
|
|
public string IPAddress { get; set; }
|
|
|
|
public int GameTokenId { get; set; }
|
|
|
|
[ForeignKey(nameof(GameTokenId))]
|
|
public GameToken GameToken { get; set; }
|
|
} |