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

29 lines
No EOL
577 B
C#

// WingsEmu
//
// Developed by NosWings Team
namespace WingsEmu.Packets.ClientPackets
{
[PacketHeader("guri")]
public class GuriPacket : ClientPacket
{
#region Properties
[PacketIndex(0)]
public int Type { get; set; }
[PacketIndex(1)]
public int Argument { get; set; }
[PacketIndex(2)]
public long? User { get; set; }
[PacketIndex(3)]
public long? Data { get; set; }
[PacketIndex(4, serializeToEnd: true)]
public string Value { get; set; }
#endregion
}
}