14 lines
221 B
C#
14 lines
221 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Sai.Toolkit.Core.LandXMLData
|
|
{
|
|
[XmlType("P")]
|
|
[Serializable]
|
|
public class Point : TextPoint3D
|
|
{
|
|
[XmlAttribute("id")]
|
|
public string Id { get; set; }
|
|
}
|
|
}
|