2023-07-12 10:40:21 -04:00
|
|
|
using System.Xml;
|
|
|
|
|
using System.Xml.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace SabreTools.Models.Logiqx
|
|
|
|
|
{
|
|
|
|
|
[XmlRoot("sample")]
|
2023-07-14 00:39:22 -04:00
|
|
|
public class Sample : ItemBase
|
2023-07-12 10:40:21 -04:00
|
|
|
{
|
|
|
|
|
[XmlAttribute("name")]
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|