.Data
.vscode
Archive
Server
.vscode
ApiControllers
Controllers
Data
Models
Properties
Repositories
Services
csv
json
CSV.cs
Calibration.cs
DataSet.cs
Info.cs
Layer.cs
LayerHeader.cs
Log10.cs
Point.cs
Position.cs
Profile.cs
ProfileHeader.cs
ProfilePoint.cs
RawData.cs
Setup.cs
Step.cs
AttachmentsService.cs
InboundDataService.cs
SQLDbConnectionFactory.cs
SpreadingResistanceProfileService.cs
Views
wwwroot
ApiLoggingMiddleware.cs
OI.Metrology.Server.csproj
Program.cs
compilerconfig.json
compilerconfig.json.defaults
Shared
Static
Tests
View
Wafer-Counter
.editorconfig
.gitignore
OI-Metrology.sln
README.md
azure-pipelines-server-development.yml
azure-pipelines-server.yml
package.json
22 lines
385 B
C#
22 lines
385 B
C#
namespace Adaptation.FileHandlers.json;
|
|
|
|
public class Step
|
|
{
|
|
|
|
public int Number { get; }
|
|
public int Points { get; }
|
|
public double X { get; }
|
|
public double Y { get; }
|
|
|
|
public Step(int number,
|
|
int points,
|
|
double x,
|
|
double y)
|
|
{
|
|
Number = number;
|
|
Points = points;
|
|
X = x;
|
|
Y = y;
|
|
}
|
|
|
|
} |