using System; using System.Collections.Generic; using System.Text; namespace Ips.Library.Entity { public class EncOptions { /// /// 采样率 /// public int Fs { get; set; } = 96000; /// /// 不知道干啥用,默认值:5 /// public int AverageCnt { get; set; } = 5; } }