8 lines
273 B
C#
8 lines
273 B
C#
// Copyright (c) 2023 Timothy Schenk. Subject to the GNU AGPL Version 3 License.
|
|
|
|
using JetBrains.Annotations;
|
|
|
|
namespace Rai.PacketMediator;
|
|
|
|
[UsedImplicitly(ImplicitUseTargetFlags.WithInheritors)]
|
|
public interface IBidirectionalPacket : IOutgoingPacket, IIncomingPacket;
|