- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Wayne_VaporRecoveryDataCollectorBoard
- {
- public class BoardStateChangeEventArgs : EventArgs
- {
- public Board Board { get; }
- public BoardStateChangeEventArgs(Board board)
- {
- this.Board = board;
- }
- }
- }
|