mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2024-11-15 14:06:49 +00:00
0e8a530573
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
16 lines
338 B
C#
16 lines
338 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
|
|
{
|
|
public PortEventArgs(byte value) => this.Port = value;
|
|
|
|
public byte Port { get; }
|
|
}
|
|
}
|