QueryEphEventArgs.cs 570 B

12345678910111213141516171819202122232425262728
  1. using Ips.Library.Entity;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Ips.Sps.Com.Ephs
  8. {
  9. public class QueryEphEventArgs : EventArgs
  10. {
  11. public QueryEphEventArgs()
  12. {
  13. }
  14. public QueryEphEventArgs(int satNum, DateTime ephTime)
  15. {
  16. SatNum = satNum;
  17. EphTime = ephTime;
  18. }
  19. public int SatNum { get; set; }
  20. public DateTime EphTime { get; set; }
  21. public EphResult Result { get; set; }
  22. }
  23. }