1234567891011121314151617181920212223242526272829303132333435 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace XdCxRhDW.Api
- {
- public class DmcResult
- {
- public DmcResult()
- {
- }
- public DmcResult(int start, int length, string userName,int times)
- {
- Start = start;
- Length = length;
- UserName = userName;
- Times = times;
- }
- public int Start { get; set; }
- public int Length { get; set; }
- public string UserName { get; set; }
- public string DmcType { get; set; }
- public string ModType { get; set; }//调制类型,BPSK等
- public int Times { get; set; }//ms
- }
- }
|