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.
14 lines
427 B
C#
14 lines
427 B
C#
namespace NexusForever.Database.Character.Model
|
|
{
|
|
public class CharacterActionSetShortcutModel
|
|
{
|
|
public ulong Id { get; set; }
|
|
public byte SpecIndex { get; set; }
|
|
public ushort Location { get; set; }
|
|
public byte ShortcutType { get; set; }
|
|
public uint ObjectId { get; set; }
|
|
public byte Tier { get; set; }
|
|
|
|
public CharacterModel Character { get; set; }
|
|
}
|
|
}
|