PacketMediator/IBidirectionalPacket.cs

9 lines
260 B
C#
Raw Permalink Normal View History

2024-02-08 11:55:35 +00:00
// Licensed to Timothy Schenk under the GNU AGPL Version 3 License.
using JetBrains.Annotations;
namespace Rai.PacketMediator;
[UsedImplicitly(ImplicitUseTargetFlags.WithInheritors)]
public interface IBidirectionalPacket : IOutgoingPacket, IIncomingPacket;