Files
SabreTools.Serialization/SabreTools.Data.Models/OfflineList/To.cs

24 lines
531 B
C#
Raw Normal View History

2025-09-26 10:20:48 -04:00
using System.Xml;
using System.Xml.Serialization;
2025-09-26 13:06:18 -04:00
namespace SabreTools.Data.Models.OfflineList
2025-09-26 10:20:48 -04:00
{
[XmlRoot("to")]
public class To
{
[XmlAttribute("value")]
public string? Value { get; set; }
/// <remarks>Boolean</remarks>
[XmlAttribute("default")]
public string? Default { get; set; }
/// <remarks>Boolean</remarks>
[XmlAttribute("auto")]
public string? Auto { get; set; }
[XmlElement("find")]
public Find[]? Find { get; set; }
}
2026-01-27 12:03:01 -05:00
}