tbf/Common/IMeasurementCorrection.cs
2021-06-18 15:35:46 +02:00

12 lines
208 B
C#

using System;
namespace Common
{
public interface IMeasurementCorrection
{
int RangeIx { get; set; }
float Measurement { get; set; }
float Correction { get; set; }
}
}