DetNotDamaOptions.cs 306 B

1234567891011121314
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace Ips.Library.Entity
  5. {
  6. public class DetNotDamaOptions
  7. {
  8. /// <summary>
  9. /// 信号带宽,单位Hz,支持5kHz,25kHz,其它
  10. /// </summary>
  11. public int BandWidth { get; set; } = 25000;
  12. }
  13. }