SineDataModel.cs 726 B

12345678910111213141516171819202122232425
  1. using Shaker.Models;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Shaker.Model
  8. {
  9. public class SineDataModel :BaseModel, IResultDataModel
  10. {
  11. public float TotalTime = 0;
  12. public float RunTime = 0;
  13. public float CurrentFrequency = 0;
  14. public float CurrentAcceleration = 0;
  15. public uint SweepIndex = 0;
  16. public SweepDirection SweepDirection = SweepDirection.Up;
  17. public SweepStep SweepStep = SweepStep.Start;
  18. public readonly MainPageType MainPageType = MainPageType.SinePage;
  19. public override object Clone()
  20. {
  21. return this.CloneBase();
  22. }
  23. }
  24. }