// WingsEmu // // Developed by NosWings Team namespace WingsEmu.Packets.ClientPackets { [PacketHeader("s_carrier")] public class SpecialistHolderPacket : ClientPacket { #region Properties [PacketIndex(0)] public short Slot { get; set; } [PacketIndex(1)] public byte HolderSlot { get; set; } [PacketIndex(2)] public byte HolderType { get; set; } #endregion } }