Files
SabreTools/SabreTools.Models/OfflineList/Find.cs

19 lines
413 B
C#
Raw Normal View History

2023-07-12 09:27:18 -04:00
using System.Xml;
using System.Xml.Serialization;
namespace SabreTools.Models.OfflineList
{
[XmlRoot("find")]
public class Find
{
[XmlAttribute("operation")]
public string? Operation { get; set; }
/// <remarks>Numeric?</remarks>
[XmlAttribute("value")]
public string? Value { get; set; }
[XmlText]
2023-07-12 09:27:18 -04:00
public string? Content { get; set; }
}
}