nexusforever/Source/NexusForever.Database.Character/Model/CharacterCustomisationModel.cs

12 lines
285 B
C#
Raw Permalink Normal View History

namespace NexusForever.Database.Character.Model
{
public class CharacterCustomisationModel
{
public ulong Id { get; set; }
public uint Label { get; set; }
public uint Value { get; set; }
public CharacterModel Character { get; set; }
}
}