17 lines
No EOL
326 B
C#
17 lines
No EOL
326 B
C#
// WingsEmu
|
|
//
|
|
// Developed by NosWings Team
|
|
|
|
namespace WingsEmu.Packets.ClientPackets
|
|
{
|
|
[PacketHeader("exc_list")]
|
|
public class ExcListPacket : ClientPacket
|
|
{
|
|
#region Properties
|
|
|
|
[PacketIndex(0, SerializeToEnd = true)]
|
|
public string PacketData { get; set; }
|
|
|
|
#endregion
|
|
}
|
|
} |