EightBitNet/EightBit/PortEventArgs.cs
Adrian Conlon 0e8a530573 More analysis suggested tidy ups.
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
2019-02-06 23:41:56 +00:00

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; }
}
}