Files
met08resisrp2100/Adaptation/FileHandlers/json/Detail.cs
2023-05-10 12:22:24 -07:00

15 lines
385 B
C#

namespace Adaptation.FileHandlers.json;
public class Detail
{
public string HeaderUniqueId { get; set; }
public string UniqueId { get; set; }
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; }
}