using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace XdCxRhDW.Core.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 SigType { get; set; }//信号类型,BPSK等 public int Times { get; set; }//ms } }