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.
22 lines
789 B
C#
22 lines
789 B
C#
namespace NexusForever.Database.Auth.Model
|
|
{
|
|
public class AccountKeybindingModel
|
|
{
|
|
public uint Id { get; set; }
|
|
public ushort InputActionId { get; set; }
|
|
public uint DeviceEnum00 { get; set; }
|
|
public uint DeviceEnum01 { get; set; }
|
|
public uint DeviceEnum02 { get; set; }
|
|
public uint Code00 { get; set; }
|
|
public uint Code01 { get; set; }
|
|
public uint Code02 { get; set; }
|
|
public uint MetaKeys00 { get; set; }
|
|
public uint MetaKeys01 { get; set; }
|
|
public uint MetaKeys02 { get; set; }
|
|
public uint EventTypeEnum00 { get; set; }
|
|
public uint EventTypeEnum01 { get; set; }
|
|
public uint EventTypeEnum02 { get; set; }
|
|
|
|
public AccountModel Account { get; set; }
|
|
}
|
|
}
|