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

35 lines
No EOL
712 B
C#

// WingsEmu
//
// Developed by NosWings Team
namespace WingsEmu.Packets.ClientPackets
{
[PacketHeader("pst")]
public class PstPacket : ClientPacket
{
#region Properties
[PacketIndex(0)]
public int Argument { get; set; }
[PacketIndex(1)]
public int Type { get; set; }
[PacketIndex(2)]
public long Id { get; set; }
[PacketIndex(3)]
public int? Unknow1 { get; set; }
[PacketIndex(4)]
public int Unknow2 { get; set; }
[PacketIndex(5)]
public string Receiver { get; set; }
[PacketIndex(6, SerializeToEnd = true)]
public string Data { get; set; }
#endregion
}
}