Files
SabreTools/SabreTools.Models/Listxml/DeviceRef.cs

12 lines
229 B
C#
Raw Normal View History

2023-07-11 23:39:54 -04:00
using System.Xml;
using System.Xml.Serialization;
namespace SabreTools.Models.Listxml
{
[XmlRoot("device_ref")]
public class DeviceRef
{
[XmlAttribute("name")]
public string Name { get; set; }
}
}