17 lines
282 B
C#
17 lines
282 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Sai.Toolkit.Core.LandXMLData
|
|
{
|
|
[XmlType("ProjectOf")]
|
|
[Serializable]
|
|
public class Project
|
|
{
|
|
[XmlAttribute("name")]
|
|
public string Name { get; set; }
|
|
|
|
[XmlAttribute("file")]
|
|
public string File { get; set; }
|
|
}
|
|
}
|