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
368 B
C#
13 lines
368 B
C#
namespace NexusForever.Database.Character.Model
|
|
{
|
|
public class CharacterPathModel
|
|
{
|
|
public ulong Id { get; set; }
|
|
public byte Path { get; set; }
|
|
public byte Unlocked { get; set; }
|
|
public uint TotalXp { get; set; }
|
|
public byte LevelRewarded { get; set; }
|
|
|
|
public CharacterModel Character { get; set; }
|
|
}
|
|
}
|