mirror of
https://github.com/LBPUnion/ProjectLighthouse.git
synced 2025-06-05 23:52:27 +00:00
19 lines
No EOL
428 B
C#
19 lines
No EOL
428 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace LBPUnion.ProjectLighthouse.Types
|
|
{
|
|
public class Token
|
|
{
|
|
// ReSharper disable once UnusedMember.Global
|
|
[Key]
|
|
public int TokenId { get; set; }
|
|
|
|
public int UserId { get; set; }
|
|
|
|
public string UserToken { get; set; }
|
|
|
|
public string UserLocation { get; set; }
|
|
|
|
public GameVersion GameVersion { get; set; }
|
|
}
|
|
} |