using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DW5S.DTO
{
    /// 
    /// 星历推算参数模型(指定时间段)
    /// 
    public class XlCalcMultDto
    {
        /// 
        /// 双行根数(line1和line2用分号拼到一起)
        /// 
        public string tleStr { get; set; }
        /// 
        /// 开始时刻
        /// 
        public DateTime startTime { get; set; }
        /// 
        /// 结束时刻
        /// 
        public DateTime endTime { get; set; }
        /// 
        /// 推算间隔(秒)
        /// 
        [Range(0,int.MaxValue)]
        public int spanSeconds { get; set; }
    }
}