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

14 lines
317 B
C#

using System.Collections.Generic;
using System.Linq;
namespace BoreholeExtract
{
public class BoreholeLog
{
public HeaderInfo Header { get; set; }
public List<LayerData> Layers { get; set; }
public double HoleDepth => Header.HoleElevation - Layers.Last().BottomElevation;
}
}