using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DW5S.DTO { /// /// 卫星 /// public class SatDto { /// /// 卫星编号 /// public int SatCode { get; set; } /// /// 信号时刻 /// public DateTime SigTime { get; set; } /// /// 超时时间(单位秒,默认30秒) /// [Range(10, 600)] public int TimeoutSeconds { get; set; } = 30; } }