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

15 lines
308 B
C#

using System;
namespace Common
{
public interface IUncertainty
{
float Measurement { get; }
float MainUncertainty { get; }
float Resolution { get; }
float DriftPerYr { get; }
float Conditions { get; }
float UncertaintyOfCorrection { get; }
}
}