using Ips.Library.Entity; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Ips.Sps.Com.Ephs { public class QueryEphEventArgs : EventArgs { public QueryEphEventArgs() { } public QueryEphEventArgs(int satNum, DateTime ephTime) { SatNum = satNum; EphTime = ephTime; } public int SatNum { get; set; } public DateTime EphTime { get; set; } public EphResult Result { get; set; } } }