Files
SabreTools/SabreTools.Models/Logiqx/DeviceRef.cs

12 lines
239 B
C#
Raw Normal View History

using System.Xml;
using System.Xml.Serialization;
namespace SabreTools.Models.Logiqx
{
[XmlRoot("device_ref")]
public class DeviceRef : ItemBase
{
[XmlAttribute("name")]
public string Name { get; set; }
}
}