using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Shaker.Models { public class AccelerationConfigModel:BaseModel { public float Weight = 1; public float Sensitivity = 100; public Polarity Polarity = Polarity.Positive; public override object Clone() { return this.CloneBase(); } } }