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