nexusforever/Source/NexusForever.Database.Character/Model/CharacterPetCustomisationModel.cs
Rawaho 6ebe337877 Implemented database migrations.
Moved from database first to code first.
Upgraded to EFCore 3.1.
Upgraded to .NET Core 3.1.
2020-02-29 15:44:17 +13:00

13 lines
378 B
C#

namespace NexusForever.Database.Character.Model
{
public class CharacterPetCustomisationModel
{
public ulong Id { get; set; }
public byte Type { get; set; }
public uint ObjectId { get; set; }
public string Name { get; set; }
public ulong FlairIdMask { get; set; }
public CharacterModel Character { get; set; }
}
}