forked from ddrilling/AsbCloudServer
34 lines
1.3 KiB
C#
34 lines
1.3 KiB
C#
namespace AsbCloudApp.Data
|
||
{
|
||
public class FluidDataDto
|
||
{
|
||
public string Temperature { get; set; }
|
||
public string Density { get; set; }
|
||
public string ConditionalViscosity { get; set; }
|
||
public string R300 { get; set; }
|
||
public string R600 { get; set; }
|
||
public string R3r6 { get; set; }
|
||
public string DnsDpa { get; set; }
|
||
public string PlasticViscocity { get; set; }
|
||
public string SnsDpa { get; set; }
|
||
public string R3r649С { get; set; }
|
||
public string Dns49Cdpa { get; set; }
|
||
public string PlasticViscocity49c { get; set; }
|
||
public string Sns49Cdpa { get; set; }
|
||
public string Mbt { get; set; }
|
||
public string Sand { get; set; }
|
||
public string Filtering { get; set; }
|
||
public string Crust { get; set; }
|
||
public string Ktk { get; set; }
|
||
public string Ph { get; set; }
|
||
public string Hardness { get; set; }
|
||
public string Chlorides { get; set; }
|
||
public string Pf { get; set; }
|
||
public string Mf { get; set; }
|
||
public string Pm { get; set; }
|
||
public string FluidSolidPhase { get; set; }
|
||
public string Grease { get; set; }
|
||
public string CalciumCarbonate { get; set; }
|
||
}
|
||
}
|