mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-12-20 00:16:43 +00:00
12 lines
280 B
C#
12 lines
280 B
C#
// <copyright file="PortEventArgs.cs" company="Adrian Conlon">
|
|
// Copyright (c) Adrian Conlon. All rights reserved.
|
|
// </copyright>
|
|
|
|
namespace EightBit
|
|
{
|
|
public sealed class PortEventArgs(ushort value) : EventArgs
|
|
{
|
|
public ushort Port { get; } = value;
|
|
}
|
|
}
|