Files
SzmediTools/BoreholeExtract/BoreholeLog.cs

14 lines
317 B
C#
Raw Normal View History

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