ProjectLighthouse/ProjectLighthouse/Types/Token.cs
2021-11-13 06:05:12 -05:00

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