12 lines
208 B
C#
12 lines
208 B
C#
|
|
using System;
|
|||
|
|
|
|||
|
|
namespace Common
|
|||
|
|
{
|
|||
|
|
public interface IMeasurementCorrection
|
|||
|
|
{
|
|||
|
|
int RangeIx { get; set; }
|
|||
|
|
float Measurement { get; set; }
|
|||
|
|
float Correction { get; set; }
|
|||
|
|
}
|
|||
|
|
}
|