17 lines
394 B
C#
17 lines
394 B
C#
namespace Client.Domain.ValueObjects
|
|
{
|
|
public class InventoryInfo
|
|
{
|
|
public uint MaxWeight { get; set; }
|
|
public uint Weight { get; set; }
|
|
public uint Slots { get; set; }
|
|
|
|
public InventoryInfo(uint maxWeight, uint weight, uint slots)
|
|
{
|
|
MaxWeight = maxWeight;
|
|
Weight = weight;
|
|
Slots = slots;
|
|
}
|
|
}
|
|
}
|