mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-01-11 07:30:10 +00:00
9a06b1743f
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
17 lines
269 B
C#
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; } }
|
|
}
|
|
}
|