using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using System.Threading.Tasks; using XdCxRhDW.Dto.Attribute; namespace XdCxRhDW.Dto { /// /// 星历推算参数模型(指定时刻) /// public class XlCalcDto { /// /// 双行根数(line1和line2用分号拼到一起) /// [TleStrAttribute] public string tleStr { get; set; } /// /// 信号时刻 /// public DateTime SigTime { get; set; } /// /// 超时时间(单位秒,默认30秒) /// [RangeInt(10, 600, IncludeMin = true)] public int TimeoutSeconds { get; set; } = 30; } }