feat: create window client app
This commit is contained in:
16
Client/Domain/ValueObjects/InventoryInfo.cs
Normal file
16
Client/Domain/ValueObjects/InventoryInfo.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user