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