Files

15 lines
313 B
C#
Raw Permalink Normal View History

2025-12-23 21:37:02 +08:00
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; }
}
}