server-master/srcs/WingsAPI.Data/Exchanges/LogPlayerExchangeItemInfo.cs
2026-02-10 18:21:30 +01:00

10 lines
No EOL
238 B
C#

using WingsEmu.DTOs.Items;
namespace WingsAPI.Data.Exchanges;
public class LogPlayerExchangeItemInfo
{
public short Amount { get; init; }
public ItemInstanceDTO ItemInstance { get; init; }
public byte Slot { get; set; }
}