DmcResult.cs 733 B

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