2024-02-26 13:18:04 +01:00
|
|
|
// Licensed to Timothy Schenk under the Apache 2.0 License.
|
2024-02-08 12:55:35 +01:00
|
|
|
|
|
|
|
using JetBrains.Annotations;
|
|
|
|
|
|
|
|
namespace Rai.PacketMediator;
|
|
|
|
|
|
|
|
[UsedImplicitly(ImplicitUseTargetFlags.WithInheritors)]
|
|
|
|
public interface IBidirectionalPacket : IOutgoingPacket, IIncomingPacket;
|