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