1234567891011121314151617 |
- using Application.VaporRecoveryOnlineWatchHubApp.UnversalApiModels;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace VaporRecoveryOnlineWatchHubApp
- {
- class VRBoardNozzleFlowDataEventArgs : EventArgs
- {
- public VRBoardNozzleTrxFlowData data { get; }
- public VRBoardNozzleFlowDataEventArgs(VRBoardNozzleTrxFlowData data)
- {
- this.data = data;
- }
- }
- }
|