using System; using System.Collections.Generic; using System.Text; namespace Wayne_VaporRecoveryDataCollectorBoard { public class DataRecievedEventArgs : EventArgs { public int BoardPhysicalAddress { get; } public DataCollectorMessageBase Data { get; } public DataRecievedEventArgs(DataCollectorMessageBase data) { this.Data = data; } } }