using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace Turf.Models { public class Coordinate { public Coordinate() { } public Coordinate(double x, double y) { this.x = x; this.y = y; } public double x { get; set; } public double y { get; set; } public override string ToString() { return x + "," + y; } } }