using System; namespace AsbCloudDb.Model { public class MudDiagramData { public int Key { get; set; } public DateTime LastUpdate { get; set; } = DateTime.Now; public double ProbeNumber { get; set; } public double ProbeExtractionDepth { get; set; } public double Sandstone { get; set; } public double Siltstone { get; set; } public double Argillit { get; set; } public double BrokenArgillit { get; set; } public double Coal { get; set; } public double Sand { get; set; } public double Clay { get; set; } public double Camstone { get; set; } public double Cement { get; set; } public string Summary { get; set; } public double DrillingMud { get; set; } public double Sludge { get; set; } public double MaxSum { get; set; } public double Methane { get; set; } public double Ethane { get; set; } public double Propane { get; set; } public double Butane { get; set; } public double Pentane { get; set; } public double MechanicalSpeed { get; set; } public string PreliminaryConclusion { get; set; } } }