L2Bot2.0/Client/Domain/ValueObjects/InventoryInfo.cs
2023-01-28 14:54:49 +04:00

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