mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2026-03-11 05:41:49 +00:00
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; } }
|
|
}
|
|
}
|