21 lines
472 B
C#
21 lines
472 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace ShrlAlgoToolkit.RevitAddins.RvIndependent.MetroGauges.LandXMLData
|
|
{
|
|
[XmlType("Structures")]
|
|
[Serializable]
|
|
public class Structures
|
|
{
|
|
public Structures()
|
|
{
|
|
SolidCategories = new List<SolidCategory>();
|
|
}
|
|
|
|
[XmlAttribute("name")]
|
|
public string Name;
|
|
|
|
[XmlElement("SolidCategory")]
|
|
public List<SolidCategory> SolidCategories { get; set; }
|
|
}
|
|
}
|