// // FakePacket.cs // // Copyright (c) František Boháček. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. using NosSmooth.Packets; namespace NosSmooth.Core.Tests.Fakes.Packets; /// /// A fake packet. /// /// The input. public record FakePacket(string Input) : IPacket;