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