管道基础大数据平台系统开发-【CS】-ExportMap
13693261870
2024-02-29 81f67d9cf9632cc35ec5026655623a7263b74182
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;
        }
    }
}