nexusforever/Source/NexusForever.Database.Character/Model/CharacterTradeskillMaterialModel.cs
Kirmmin 517acd6864 Inventory/Crafting: Supply Satchel support
Minor tidy

Updates following review
2020-04-04 19:20:51 -07:00

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; }
}
}