EightBitNet/EightBit/PortEventArgs.cs
Adrian Conlon 9a06b1743f Port of EightBit library to .Net (unworking!)
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
2019-02-02 15:12:51 +00:00

17 lines
269 B
C#

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