Files
SzmediTools/BoreholeExtract/LayerData.cs
2025-12-23 21:37:02 +08:00

15 lines
313 B
C#

namespace BoreholeExtract
{
public class LayerData
{
public string LayerNo { get; set; }
public double BottomElevation { get; set; }
public double BottomDepth { get; set; }
public double Thickness { get; set; }
public string Description { get; set; }
}
}