mirror of
https://github.com/NexusForever/NexusForever
synced 2026-08-14 00:26:05 -04:00
11 lines
308 B
C#
11 lines
308 B
C#
namespace NexusForever.Database.Character.Model
|
|
{
|
|
public class CharacterTradeskillMaterialModel
|
|
{
|
|
public ulong Id { get; set; }
|
|
public ushort MaterialId { get; set; }
|
|
public ushort Amount { get; set; }
|
|
|
|
public virtual CharacterModel Character { get; set; }
|
|
}
|
|
}
|