VRBoardNozzleFlowDataEventArgs.cs 431 B

1234567891011121314151617
  1. using Application.VaporRecoveryOnlineWatchHubApp.UnversalApiModels;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace VaporRecoveryOnlineWatchHubApp
  6. {
  7. class VRBoardNozzleFlowDataEventArgs : EventArgs
  8. {
  9. public VRBoardNozzleTrxFlowData data { get; }
  10. public VRBoardNozzleFlowDataEventArgs(VRBoardNozzleTrxFlowData data)
  11. {
  12. this.data = data;
  13. }
  14. }
  15. }