15 lines
313 B
C#
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; }
|
|||
|
|
}
|
|||
|
|
}
|