namespace Adaptation.FileHandlers.json;

public class Point
{

    public double Number { get; }
    public double Depth { get; }
    public double Resistance { get; }
    public double StageX { get; }
    public double StageY { get; }
    public double StageZ { get; }
    public double StageT { get; }

    public Point(double number,
                 double depth,
                 double resistance,
                 double stageX,
                 double stageY,
                 double stageZ,
                 double stageT)
    {
        Number = number;
        Depth = depth;
        Resistance = resistance;
        StageX = stageX;
        StageY = stageY;
        StageZ = stageZ;
        StageT = stageT;
    }

}