2023-05-08 15:54:57 -07:00

13 lines
302 B
C#

namespace Adaptation.FileHandlers.csv;
public class ProfilePoint
{
public string Number { get; set; }
public string Depth { get; set; }
public string Raw { get; set; }
public string Edited { get; set; }
public string Resistivity { get; set; }
public string CD { get; set; }
}