11 lines
209 B
C#
11 lines
209 B
C#
namespace Adaptation.FileHandlers.csv;
|
|
|
|
public class Step
|
|
{
|
|
|
|
public string Number { get; set; }
|
|
public string Points { get; set; }
|
|
public string X { get; set; }
|
|
public string Y { get; set; }
|
|
|
|
} |