16 lines
344 B
C#
16 lines
344 B
C#
using System.Xml.Serialization;
|
|
|
|
namespace ShrlAlgoToolkit.RevitAddins.RvIndependent.MetroGauges.LandXMLData
|
|
{
|
|
[XmlType("ProjectOf")]
|
|
[Serializable]
|
|
public class Project
|
|
{
|
|
[XmlAttribute("name")]
|
|
public string Name { get; set; }
|
|
|
|
[XmlAttribute("file")]
|
|
public string File { get; set; }
|
|
}
|
|
}
|