SweepItemModel.cs 584 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace Shaker.Model
  7. {
  8. public class SweepItemModel:BaseModel
  9. {
  10. public SweepValueType SweepValueType = SweepValueType.FixedDisplacement;
  11. public float Value = 0;
  12. public float Frequency = 0;
  13. public float UpStop = 6;
  14. public float UpWarn = 3;
  15. public float DownStop = -6;
  16. public float DownWarn = -3;
  17. public override object Clone()
  18. {
  19. return this.CloneBase();
  20. }
  21. }
  22. }