14 lines
317 B
C#
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;
|
|
}
|
|
} |