Initial Commit

This commit is contained in:
2023-05-08 15:54:57 -07:00
commit 5924860f6c
166 changed files with 19013 additions and 0 deletions

View File

@ -0,0 +1,28 @@
namespace Adaptation.FileHandlers.json;
public class ProfilePoint
{
public int Number { get; }
public double Depth { get; }
public double Raw { get; }
public double? Edited { get; }
public double? Resistivity { get; }
public double? CD { get; }
public ProfilePoint(int number,
double depth,
double raw,
double? edited,
double? resistivity,
double? cd)
{
Number = number;
Depth = depth;
Raw = raw;
Edited = edited;
Resistivity = resistivity;
CD = cd;
}
}