using System.Diagnostics.Tracing; namespace Shaker.Model { public class AmptIdentifyConfigModel:BaseModel { public float LowFreq = 3; public float HigthFreq = 6; public override object Clone() { return this.CloneBase(); } } }