using System;
using System.Collections.Generic;
using System.Text;
namespace Ips.Library.Entity
{
public class DetDamaOptions
{
///
/// 采样率
///
public int Fs { get; set; } = 96000;
///
/// 采样类型,1:实采样 2:复采样
///
public int Channel { get; set; } = 2;
///
/// 倍速处理,1为原始速度 19200时建议4倍 96000使用2倍
///
public int Sparese { get; set; } = 2;
///
/// 是否包含ccow
///
public bool Ccow { get; set; } = true;
///
/// 是否使用full检测
///
public bool Full { get; set; } = false;
}
}