// WingsEmu
//
// Developed by NosWings Team
using System;
namespace WingsEmu.Packets
{
public class PacketHeaderAttribute : Attribute
{
public PacketHeaderAttribute(string identification) => Identification = identification;
///
/// Unique identification of the Packet
///
public string Identification { get; set; }
///
/// Pass the packet to handler method even if the serialization has failed.
///
public bool PassNonParseablePacket { get; set; }
}
}