00001 using System; 00002 using System.Collections.Generic; 00003 using System.Linq; 00004 using System.Text; 00005 00006 namespace UtmConvert { 00007 public class UtmPoint { 00008 Point _point; 00009 public Point Point { 00010 get { return _point; } 00011 set { _point = value; } 00012 } 00013 00014 string _zone = "T10"; 00015 public string Zone { 00016 get { return _zone; } 00017 set { _zone = value; } 00018 } 00019 00020 string _note = "cone"; 00021 public string Note { 00022 get { return _note; } 00023 set { _note = value; } 00024 } 00025 00026 string _handle = ""; 00027 public string Handle { 00028 get { return _handle; } 00029 set { _handle = value; } 00030 } 00031 00032 public UtmPoint() { 00033 _point = new Point(); 00034 } 00035 00036 public UtmPoint(Point point, string zone, string note, string handle) { 00037 _point = new Point(); 00038 _point = point; 00039 _zone = zone; 00040 _note = note; 00041 _handle = handle; 00042 } 00043 } 00044 }