using System; using System.Collections.Generic; using System.Text; namespace Wayne_VaporRecoveryDataCollectorBoard { public class BoardNozzleStateChangeEventArgs : EventArgs { //public Board Board { get; } public BoardNozzle BoardNozzle { get; } public BoardNozzleStateChangeEventArgs(BoardNozzle targetBoardNozzle) { this.BoardNozzle = targetBoardNozzle; } } }