1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace Shaker.Models
- {
- public class SweepItemModel : BaseModel
- {
- public SweepValueType SweepValueType = SweepValueType.FixedDisplacement;
- public double Value = 0;
- public double Frequency = 0;
- public double UpStop = 6;
- public double UpWarn = 3;
- public double DownStop = -6;
- public double DownWarn = -3;
- public override object Clone()
- {
- return this.CloneBase();
- }
- }
- }
|