using System; using System.Collections.Generic; using System.Text; using Wayne.FDCPOSLibrary; namespace Edge.Core.IndustryStandardInterface.ATG { public class AtgAlarmEventArg : EventArgs { /// /// /// public AtgAlarmEventArg(int tankNumber, IEnumerable alarms) { this.Alarms = alarms; } public IEnumerable Alarms { get; } } }