mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-01-09 07:34:13 +00:00
14 lines
295 B
C#
14 lines
295 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(byte value) : EventArgs
|
|
{
|
|
public byte Port { get; } = value;
|
|
}
|
|
}
|