using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace X2D1NoRefTaskServer
{
public class HistoryFile
{
///
/// 文件名称(含路径)
///
public string FilePath { get; set; }
///
/// 文件名上的采集时间采集时间(用户说是UTC3时间)
///
public DateTime CapTime { get; set; }
///
/// 通道1(超短信号)是上行频点Hz,其余是下行频点Hz
///
public long FreqHz { get; set; }
///
/// 采样率Hz
///
public double FsHz { get; set; }
///
/// 通道号
///
public int Ch { get; set; }
///
/// 卫星编号
///
public int SatId { get; set; }
}
}