/// <summary>
 /// Annotates a Type with the metadata required to link its child with a base type
 /// based on the provided <see cref="opCode"/> value.
 /// </summary>
 /// <param name="opCode">The operationcode.</param>
 public PatchClientPacketPayloadAttribute(PatchNetworkOperationCode opCode)
     : base((int)opCode)
 {
 }
 /// <summary>
 /// Annotates a Type with the metadata required to link its child with a base type
 /// based on the provided <see cref="opCode"/> value.
 /// </summary>
 /// <param name="opCode">The operationcode.</param>
 public PatchServerPacketPayloadAttribute(PatchNetworkOperationCode opCode)
     : base((int)opCode, typeof(PSOBBPatchPacketPayloadServer))
 {
 }