2020-02-29 15:44:17 +13:00
|
|
|
|
namespace NexusForever.Database.Auth.Model
|
2019-04-08 12:45:19 +02:00
|
|
|
|
{
|
2020-02-29 15:44:17 +13:00
|
|
|
|
public class AccountKeybindingModel
|
2019-04-08 12:45:19 +02:00
|
|
|
|
{
|
|
|
|
|
|
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; }
|
|
|
|
|
|
|
2020-02-29 15:44:17 +13:00
|
|
|
|
public AccountModel Account { get; set; }
|
2019-04-08 12:45:19 +02:00
|
|
|
|
}
|
|
|
|
|
|
}
|