12 lines
287 B
C#
12 lines
287 B
C#
namespace Adaptation.FileHandlers.csv;
|
|
|
|
public class Position
|
|
{
|
|
|
|
public string Resistivity { get; set; }
|
|
public string Resistance { get; set; }
|
|
public string PercentStandardDeviation { get; set; }
|
|
public string Number { get; set; }
|
|
public string Name { get; set; }
|
|
|
|
} |