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