AmptIdentifyConfigModel.cs 294 B

1234567891011121314
  1. using System.Diagnostics.Tracing;
  2. namespace Shaker.Model
  3. {
  4. public class AmptIdentifyConfigModel:BaseModel
  5. {
  6. public float LowFreq = 3;
  7. public float HigthFreq = 6;
  8. public override object Clone()
  9. {
  10. return this.CloneBase();
  11. }
  12. }
  13. }