21 lines
440 B
C#
21 lines
440 B
C#
|
|
using System.Xml.Serialization;
|
|||
|
|
|
|||
|
|
namespace ShrlAlgo.RvKits.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;
|
|||
|
|
}
|
|||
|
|
}
|