mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-08-14 20:27:21 +00:00
18 lines
371 B
C#
18 lines
371 B
C#
// <copyright file="PortEventArgs.cs" company="Adrian Conlon">
|
|
// Copyright (c) Adrian Conlon. All rights reserved.
|
|
// </copyright>
|
|
|
|
namespace EightBit
|
|
{
|
|
using System;
|
|
|
|
public sealed class PortEventArgs : EventArgs
|
|
{
|
|
private byte port;
|
|
|
|
public PortEventArgs(byte value) => this.port = value;
|
|
|
|
public byte Port => this.port;
|
|
}
|
|
}
|