1234567891011121314 |
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Ips.Library.Entity
- {
- public class DetNotDamaOptions
- {
- /// <summary>
- /// 信号带宽,单位Hz,支持5kHz,25kHz,其它
- /// </summary>
- public int BandWidth { get; set; } = 25000;
- }
- }
|