EightBitNet/EightBit/PortEventArgs.cs
Adrian Conlon c4e613065b A few minor consistency corrections.
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
2019-02-03 20:49:07 +00:00

14 lines
224 B
C#

using System;
namespace EightBit
{
public sealed class PortEventArgs : EventArgs
{
private byte port;
public PortEventArgs(byte value) => port = value;
public byte Port => port;
}
}