mirror of
https://github.com/NexusForever/NexusForever
synced 2026-08-14 00:26:05 -04:00
Moved from database first to code first. Upgraded to EFCore 3.1. Upgraded to .NET Core 3.1.
13 lines
304 B
C#
13 lines
304 B
C#
using System;
|
|
|
|
namespace NexusForever.Database.Auth.Model
|
|
{
|
|
public class AccountGenericUnlockModel
|
|
{
|
|
public uint Id { get; set; }
|
|
public uint Entry { get; set; }
|
|
public DateTime Timestamp { get; set; }
|
|
|
|
public virtual AccountModel Account { get; set; }
|
|
}
|
|
}
|