App.Contracts.PathVertex.PathVertex C# (CSharp) Метод

PathVertex() публичный Метод

public PathVertex ( double x, double y, double speed ) : System
x double
y double
speed double
Результат System
        public PathVertex(double x, double y, double speed)
        {
            X = x;
            Y = y;
            Speed = speed;
        }
PathVertex