15 lines
415 B
C#
15 lines
415 B
C#
///
|
|
/// Copyright (c) 2021 Sensus Slovensko a.s.
|
|
///
|
|
using System;
|
|
|
|
namespace Common
|
|
{
|
|
public static class GlobalData
|
|
{
|
|
public static double SampleDensity = 0; /// sample water density measured in an accredited labo [kg/m3]
|
|
public static double SampleTemp = 0; /// sample temperature when density measured in an accredited labo [°C]
|
|
public static double Buoyancy = 0;
|
|
}
|
|
}
|