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; } } }