DmcResult.cs 728 B

1234567891011121314151617181920212223242526272829303132333435
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace XdCxRhDW.Api
  7. {
  8. public class DmcResult
  9. {
  10. public DmcResult()
  11. {
  12. }
  13. public DmcResult(int start, int length, string userName,int times)
  14. {
  15. Start = start;
  16. Length = length;
  17. UserName = userName;
  18. Times = times;
  19. }
  20. public int Start { get; set; }
  21. public int Length { get; set; }
  22. public string UserName { get; set; }
  23. public string DmcType { get; set; }
  24. public string ModType { get; set; }//调制类型,BPSK等
  25. public int Times { get; set; }//ms
  26. }
  27. }