// // Copyright (c) Adrian Conlon. All rights reserved. // namespace EightBit { public sealed class PortEventArgs(ushort value) : EventArgs { public ushort Port { get; } = value; } }