Files
EightBitNet/EightBit/PortEventArgs.cs
2024-10-12 12:24:42 +01:00

12 lines
276 B
C#

// <copyright file="PortEventArgs.cs" company="Adrian Conlon">
// Copyright (c) Adrian Conlon. All rights reserved.
// </copyright>
namespace EightBit
{
public sealed class PortEventArgs(byte value) : EventArgs
{
public byte Port { get; } = value;
}
}