12345678910111213141516171819202122232425 |
- using Shaker.Models;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Shaker.Model
- {
- public class SineDataModel :BaseModel, IResultDataModel
- {
- public float TotalTime = 0;
- public float RunTime = 0;
- public float CurrentFrequency = 0;
- public float CurrentAcceleration = 0;
- public uint SweepIndex = 0;
- public SweepDirection SweepDirection = SweepDirection.Up;
- public SweepStep SweepStep = SweepStep.Start;
- public readonly MainPageType MainPageType = MainPageType.SinePage;
- public override object Clone()
- {
- return this.CloneBase();
- }
- }
- }
|