1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
| 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;
| }
| }
| }
|
|