tbf/Common/IMeasurementCorrection.cs

12 lines
210 B
C#
Raw Permalink Normal View History

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