12345678910111213141516171819202122232425 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Runtime.Serialization;
- using System.Text;
- using System.Threading.Tasks;
- namespace CyberX8_Core
- {
- [Serializable]
- [DataContract]
- public class MFCCalibrationData
- {
- [DataMember]
- public float Setpoint { get; set; }
- [DataMember]
- public double CalculateValue { get; set; }
- public MFCCalibrationData(float setpoint,double calculateValue)
- {
- Setpoint = setpoint;
- CalculateValue = calculateValue;
- }
- }
- }
|