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

22 lines
No EOL
458 B
C#

// WingsEmu
//
// Developed by NosWings Team
namespace WingsEmu.Packets.ClientPackets
{
[PacketHeader("NoS0575")]
public class Nos0575Packet : ClientPacket
{
[PacketIndex(0)]
public int Number { get; set; }
[PacketIndex(1)]
public string Name { get; set; }
[PacketIndex(2)]
public string Password { get; set; }
[PacketIndex(3)]
public string ClientData { get; set; }
}
}