tbf/Common/IMeasurementCorrection.cs

12 lines
208 B
C#

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