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