DataRecievedEventArgs.cs 408 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Wayne_VaporRecoveryDataCollectorBoard
  5. {
  6. public class DataRecievedEventArgs : EventArgs
  7. {
  8. public int BoardPhysicalAddress { get; }
  9. public DataCollectorMessageBase Data { get; }
  10. public DataRecievedEventArgs(DataCollectorMessageBase data)
  11. {
  12. this.Data = data;
  13. }
  14. }
  15. }