using System; using System.Collections.Generic; using System.Text; namespace Ips.Library.Entity { public class DmtOptions { /// /// 下行频点,单位:Hz /// public long DownFreq { get; set; } /// /// 采样率,单位:个 /// public int Fs { get; set; } = 96000; } }