server-master/srcs/WingsAPI.Game/Exchange/PlayerExchange.cs
2026-02-10 18:21:30 +01:00

27 lines
No EOL
559 B
C#

using System.Collections.Generic;
using WingsEmu.Game.Inventory;
namespace WingsEmu.Game.Exchange;
public class PlayerExchange
{
public PlayerExchange(long senderId, long targetId)
{
SenderId = senderId;
TargetId = targetId;
}
public long SenderId { get; }
public long TargetId { get; }
public List<(InventoryItem, short)> Items { get; set; }
public int Gold { get; set; }
public long BankGold { get; set; }
public bool RegisteredItems { get; set; }
public bool AcceptedTrade { get; set; }
}