server-master/srcs/WingsAPI.Packets/ClientPackets/SellPacket.cs
2026-02-10 18:21:30 +01:00

23 lines
No EOL
425 B
C#

// WingsEmu
//
// Developed by NosWings Team
namespace WingsEmu.Packets.ClientPackets
{
[PacketHeader("sell")]
public class SellPacket : ClientPacket
{
#region Properties
[PacketIndex(2)]
public short Data { get; set; }
[PacketIndex(3)]
public byte? Slot { get; set; }
[PacketIndex(4)]
public ushort? Amount { get; set; }
#endregion
}
}