2023-07-12 09:27:18 -04:00
|
|
|
using System.Xml;
|
|
|
|
|
using System.Xml.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace SabreTools.Models.OfflineList
|
|
|
|
|
{
|
|
|
|
|
[XmlRoot("to")]
|
|
|
|
|
public class To
|
|
|
|
|
{
|
|
|
|
|
[XmlAttribute("value")]
|
|
|
|
|
public string? Value { get; set; }
|
|
|
|
|
|
2023-07-12 23:40:20 -04:00
|
|
|
/// <remarks>Boolean</remarks>
|
2023-07-12 09:27:18 -04:00
|
|
|
[XmlAttribute("default")]
|
2023-07-12 23:40:20 -04:00
|
|
|
public string? Default { get; set; }
|
2023-07-12 09:27:18 -04:00
|
|
|
|
2023-07-12 23:40:20 -04:00
|
|
|
/// <remarks>Boolean</remarks>
|
2023-07-12 09:27:18 -04:00
|
|
|
[XmlAttribute("auto")]
|
2023-07-12 23:40:20 -04:00
|
|
|
public string? Auto { get; set; }
|
2023-07-12 09:27:18 -04:00
|
|
|
|
|
|
|
|
[XmlElement("find")]
|
|
|
|
|
public Find[]? Find { get; set; }
|
2023-07-12 23:40:20 -04:00
|
|
|
|
|
|
|
|
#region DO NOT USE IN PRODUCTION
|
|
|
|
|
|
|
|
|
|
/// <remarks>Should be empty</remarks>
|
|
|
|
|
[XmlAnyAttribute]
|
|
|
|
|
public XmlAttribute[]? ADDITIONAL_ATTRIBUTES { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <remarks>Should be empty</remarks>
|
|
|
|
|
[XmlAnyElement]
|
|
|
|
|
public object[]? ADDITIONAL_ELEMENTS { get; set; }
|
|
|
|
|
|
|
|
|
|
#endregion
|
2023-07-12 09:27:18 -04:00
|
|
|
}
|
|
|
|
|
}
|