15 lines
308 B
C#
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; }
|
|
}
|
|
}
|