13 lines
271 B
C#
13 lines
271 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace ShrlAlgoToolkit.RevitAddins.RvIndependent.MetroGauges.LandXMLData
|
|
{
|
|
[XmlType("P")]
|
|
[Serializable]
|
|
public class Point : TextPoint3D
|
|
{
|
|
[XmlAttribute("id")]
|
|
public string Id { get; set; }
|
|
}
|
|
}
|